// GUP Sripts

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=200,height=200,left = 700,top = 500');");
}

function validate (theForm){
	if (theForm.contact_name.value == ""){
		alert("Please enter your name.");
		theForm.contact_name.focus();
		return(false);
	}
	if (theForm.contact_email.value == ""){
		alert("Please enter your email address.");
		theForm.contact_email.focus();
		return(false);
	}
	if (theForm.contact_message.value == ""){
		alert("Please enter a message.");
		theForm.contact_message.focus();
		return(false);
	}
	
	var thename = theForm.contact_name.value;
	var theemail = theForm.contact_email.value;
	var themessage = theForm.contact_message.value;
	popUp('submit.php?name='+thename+'&email='+theemail+'&message='+themessage);
	
	return(true);
	
}
