window.onload = WindowLoad;

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

function WindowLoad() { 

	var myform = document.contact;
	
	if (myform.name.value    == "")	myform.name.value    = "Your Name";
	if (myform.email.value   == "")	myform.email.value   = "Your Email Address";
	if (myform.subject.value == "")	myform.subject.value = "The Subject";
	if (myform.message.value == "")	myform.message.value = "Type your message here.";
}

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

function clearName() {
	
	var myform = document.contact;
	
	if (myform.name.value == "Your Name") {
		myform.name.value = "";
	}
}

function clearEmail() {
	
	var myform = document.contact;
	
	if (myform.email.value == "Your Email Address") {
		myform.email.value = "";
	}
}

function clearSubject() {
	
	var myform = document.contact;
	
	if (myform.subject.value == "The Subject") {
		myform.subject.value = "";
	}
}

function clearMessage() {
	
	var myform = document.contact;
	
	if (myform.message.value == "Type your message here.") {
		myform.message.value = "";
	}
}

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

function clearForm() {
	
	clearName();
	clearEmail();
	clearSubject();
	clearMessage();
}

