function populateForm(){
	document.quick_contact_8.full_name.value = "Full Name";
	document.quick_contact_8.full_name.onfocus = function(){if(this.value == "Full Name"){this.value = "";}};
	document.quick_contact_8.full_name.onblur = function(){if(this.value == ""){this.value = "Full Name";}};
	
	document.quick_contact_8.telephone.value = "Telephone";
	document.quick_contact_8.telephone.onfocus = function(){if(this.value == "Telephone"){this.value = "";}};
	document.quick_contact_8.telephone.onblur = function(){if(this.value == ""){this.value = "Telephone";}};
	
	document.quick_contact_8.email_address.value = "Email Address";
	document.quick_contact_8.email_address.onfocus = function(){if(this.value == "Email Address"){this.value = "";}};
	document.quick_contact_8.email_address.onblur = function(){if(this.value == ""){this.value = "Email Address";}};
	
	document.quick_contact_8.comments.value = "Comments";
	document.quick_contact_8.comments.onfocus = function(){if(this.value == "Comments"){this.value = "";}};
	document.quick_contact_8.comments.onblur = function(){if(this.value == ""){this.value = "Comments";}};
}

window.onload = function(){
	populateForm();
}
