
function validateHeaderLogin(){var errorMessage='';if(document.subsHeaderlogin.username.value.length==0||document.subsHeaderlogin.password.value.length==0)
return false;else
return true;}
function validateLogin(){var errorMessage='';if(document.subslogin.username.value.length==0||document.subslogin.password.value.length==0)
return false;else
return true;}

function gotoTrialPage()
{
	if(parent.window.opener!=null)
	{
	parent.window.opener.location='/register.jsp';
	window.close();
	}
	else
	{
	window.location='/register.jsp';
	}
}

function gotoOrderPage()
{
	if(parent.window.opener!=null)
	{
	parent.window.opener.location='/subscriptiontype.html';
	window.close();
	}
	else
	{
	window.location='/subscriptiontype.html';
	}
}
