<!--
function startup()
{
	try
	{
	resetinfo();
		
	if (document.LoginForm.Email.value!='')
	{
		document.LoginForm.Password.focus();
	}
	else
		document.LoginForm.Email.focus();

	}
	catch(exception)
	{
	}
}

function resetinfo()
{
	try
	{
		document.getElementById("infospan").innerHTML=sDefaultInfo;
	}
	catch(exception)
	{
	}
}

function setinfo(text)
{
	document.getElementById("infospan").innerHTML=text;
}
-->