function checkEmailPasswordForm()	{
	var emailRegex=/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,})+$/;
	if(document.emailPasswordForm.emailAddress.value.length==0||emailRegex.test(document.emailPasswordForm.emailAddress.value)==false)	{
		alert('Please enter your Email Address!');
		document.emailPasswordForm.emailAddress.focus();
		return false;
	} else {
		return true;
	}
}
function openCustomWindow(url, width, height, thename)	{
	var width=width;
	var height=height;
	var left=(screen.availWidth - width) / 2;
	var top=(screen.availHeight - height) / 2;
	window.open(url,thename, 'top=' + top + ', left=' + left + ', scrollbars=yes,resizable=yes,toolbar=no,location=no,width='+width+',height='+height+'');
}
function OpenPoll()	{
	var width=320;
	var height=320;
	var left=(screen.availWidth - width) / 2;
	var top=(screen.availHeight - height) / 2;
	window.open('/survey/displays/vote.cfm?surveyid=2','Survey', 'top=' + top + ', left=' + left + ', scrollbars=no,resizable=no,toolbar=no,location=no,width='+width+',height='+height+'');
}











