function focusField(obj) {

if (obj.value == "Please type your questions or comments here") { 
	 obj.value = "";
	 obj.style.color = "#000000";
	 }
} 

function blurField(obj) {

if ((obj.value.length == 0) || (obj.value == null) || (obj.value == "")) { 
	 obj.value = "Please type your questions or comments here";
	 obj.style.color = "#666666";
}

}
