﻿this.emailopen='no';
function clearemailform() {
	setTimeout("document.forms.awemailform.name.value='Your First Name';",500);
	setTimeout("document.forms.awemailform.email.value='Your Email Address';",500);
	opacity('emailform', 80, 0, 500);
	this.emailopen='no';
}
function openemailform() {
	if (this.emailopen != 'yes') {
		opacity('emailform',0,80,500);
		document.forms.awemailform.name.focus;
		this.emailopen='yes';
	}
}
function verifyemailform() {
	if (document.forms.awemailform.email.value=='Your Email Address') {
		alert("Please enter your email address");
		return false;
	}
	if (document.forms.awemailform.name.value=='Your First Name') {
		alert("Please enter your first name");
		return false;
	}
}
function enteremail() {
	if (document.forms.awemailform.email.value=='Your Email Address') {
		document.forms.awemailform.email.value='';
	}
	
}
function entername() {
	if (document.forms.awemailform.name.value=='Your First Name') {
		document.forms.awemailform.name.value='';
	}
	
}
function verifyemailform2() {
	if (document.forms.awemailform2.email.value=='') {
		alert("Please enter your email address");
		return false;
	}
	if (document.forms.awemailform2.name.value=='') {
		alert("Please enter your first name");
		return false;
	}
}

