function windowFullscreen() {
	window.moveTo(0,0);
	window.resizeTo(screen.availWidth,screen.availHeight);
}

/* Validate Signup Form */
function validateForm() {
	if ((document.form1a.user_email.value == '') || (document.form1a.user_email.value == 'enter email address...')) {
		alert('You must enter an email address');
	} else {
		document.form1a.submit();
	}
}
function validateForm2() {
	if ((document.form1b.user_email.value == '') || (document.form1b.user_email.value == 'enter email address...')) {
		alert('You must enter an email address');
	} else {
		document.form1b.submit();
	}
}