function clear1() {
		var greeting = document.form1.contact_greeting.value;
		if (greeting.indexOf('* Name') != -1) document.form1.contact_greeting.value="";
	}
	function reset1() {
		if (document.form1.contact_greeting.value == "") document.form1.contact_greeting.value="* Name"
	}
	
	function clear2() {
		var email = document.form1.contact_email.value;
		if (email.indexOf('* Email') != -1) document.form1.contact_email.value="";
	}
	function reset2() {
		if (document.form1.contact_email.value == "") document.form1.contact_email.value="* Email"
	}
	
	function clear3() {
		var phone = document.form1.contact_home_phone.value;
		if (phone.indexOf('Phone') != -1) document.form1.contact_home_phone.value="";
	}
	function reset3() {
		if (document.form1.contact_home_phone.value == "") document.form1.contact_home_phone.value="Phone"
	}
	
	function clear4() {
		var comment = document.form1.contact_comment.value;
		if (comment.indexOf('Message') != -1) document.form1.contact_comment.value="";
	}
	function reset4() {
		if (document.form1.contact_comment.value == "") document.form1.contact_comment.value="Message"
	}