var theWidth = 422;
var theHeight = 503;
var theTop=(screen.height/2)-(theHeight/2);
var theLeft=(screen.width/2)-(theWidth/2);
var theTop2=(screen.height/2)-(theHeight/2)+100;
var theLeft2=(screen.width/2)-(theWidth/2)+100;
var features = "height=503,width=422,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,top=" + theTop + ",left=" + theLeft;

theWidth = 350;
theHeight = 350;
theTop=(screen.height/2)-(theHeight/2);
theLeft=(screen.width/2)-(theWidth/2);
var features4 = "height=350,width=350,status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,top=" + theTop + ",left=" + theLeft;

theWidth = 640;
theHeight = 480;
theTop=(screen.height/2)-(theHeight/2);
theLeft=(screen.width/2)-(theWidth/2);
var imageshelpfeatures = "height=480,width=640,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,top=" + theTop + ",left=" + theLeft;

function doViewFinalist(FinalistId)
{
	window.open("finalist_view.asp?finalistId="+FinalistId,"finalist",features);
}

function doViewWhatIsThis()
{
	window.open("whatisthis_view.asp","whatisthis",features);
}
function loginCheckForm()
{
	if(document.login.Email.value == "")
	{
		alert("Please enter your email address.");
		document.login.Email.focus();
		return false;
	}
	if(document.login.Password.value == "")
	{
		alert("Please enter your password.");
		document.login.Password.focus();
		return false;
	}
	return true;
}