// Gamenet JavaScript Email Form
function focusEmail() {
	if(document.form1.gamenet_email.value == "Your email address" || document.form1.gamenet_email.value == "Please enter valid email") {
		document.form1.gamenet_email.value = "";
	}
}
function unfocusEmail() {
	if(document.form1.gamenet_email.value == "") {
		document.form1.gamenet_email.value = "Your email address";
	}
}
