var adSpotRandom = (new Date).valueOf();

function fSubmit()
{
	var supernetForm= document.getElementById("formLogin");
	supernetForm.submit() ;
}
function emailValue(s)
{
	var emailAddress= document.getElementById("login");
	emailAddress.value = s;
}
function getPoll()
{
}

function wrongEmail()
{
	alert("Please Enter A Valid Email Address");
}

function showAd(x,y)
{
	var obj = document.getElementById("adFrame");
	obj.style.left= x;
	obj.style.top = y+60;
	obj.style.display = "block";
}

function hideAd()
{
	var obj = document.getElementById("adFrame");
	obj.style.display = "none";
}

function postitionFooter(ypos) 
{ 
                var obj = document.getElementById("globalBottomNavWrapper"); 
                obj.style.top = ypos; 
} 

