function ViewSupport() {
  LaunchWindow('/support/support.html',100,100,530,310);
}
function ViewTerms() {
	var meleft = 200;
	var meheight = 600;
	if(window.screen){
		meleft = (screen.width / 2) - 300;
		meheight = (screen.height - 100);
	}
	launchWin = open('/support/termsofuse.html', 'launchWin', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=600,height='+meheight+',left='+meleft+', top=10,screenX='+meleft+',screenY=10');
}
function validate(){
if (document.submitform.i_email.value.length + document.submitform.i_dateid.value.length < 4) {
alert("Please enter in your MemberID OR the e-mail address you used when you joined.");
return false;
}
else {
return true;
   }
}
