/* TantraLogic newsletter registration JavaScript File */

var regscreen = null;
var movie = null;
var loaded = false;
var regon = false;
function register()
{
	loaded = true;
	if(!isprompted())
	{
		setTimeout("showreg()", 15000);
	}
}
function showreg()
{
	regon = true;
	regscreen = document.getElementById("reg");
	regscreen.style.zIndex = 100;
	regscreen.style.visibility="visible";

	movie = document.getElementById("movie");
	//if(movie != null) movie.style.visibility="hidden"; // meh
}
function hidereg()
{
	regon = false;
	regscreen = document.getElementById("reg");
	regscreen.style.visibility="hidden";
	if(movie != null) movie.style.visibility="visible";
	noprompt();
}
function pageHeight()
{
	return  window.innerHeight != null? window.innerHeight : document.documentElement && document.documentElement.clientHeight ?  document.documentElement.clientHeight : document.body != null? document.body.clientHeight : null;
}
function pageWidth()
{
	return  window.innerWidth != null? window.innerWidth : document.documentElement && document.documentElement.clientWidth ?  document.documentElement.clientWidth : document.body != null? document.body.clientWidth : null;
}

function resize()
{
	if(loaded && regon) { showreg(); }
}

document.write('<a name="#reg"></a>');
document.write('<div name="reg" id="reg" style="z-index:11; visibility: hidden; position: absolute; background: white; width:500px; height:220px; top:200px; left:50%; margin-left:-150px">');
document.write('<iframe class="prompt" border="1" frameborder="1" width="100%" height="100%" scrolling="no" src="newslettersub.html"></iframe></div>');

window.onresize = resize;
window.onload = register;