function freeTrialPopUp(destUrl)
{
   var windowArgs = "width=500,height=230,left=60,top=10,resizable=yes";
	targetUrl = destUrl;
   var win = window.open("email-form.jsp?" + destUrl, "free_trial", windowArgs);
}

function goToTrialLocation()
{
	window.opener.location=(location.search).substring(1);
}

function checkemail(myForm) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.email.value)){
return (true)
}
alert("Invalid E-mail Address! Please re-enter.\n\nIf you chose not to enter an E-mail address, please continue.")
return (false)
}