function formSubmit()
 {
  document.form1.submit();
 }
 function clearText(thefield){
		thefield.style.backgroundColor = 'white';

		if (thefield.defaultValue==thefield.value){
			thefield.value = "";
		}	
	} 