// JavaScript Document

/* clears value from text field */

function clearVal(frm, el, val){
		var newstr = new String();
		//get the value of the textbox zip_code
		if(val != ''){
			newstr = '';
			document.forms[frm].elements[el].value = newstr;
		}
	}
	
function clearField() {
if (document.form1.customer_mail.value=="Enter Your Email") {
document.form1.customer_mail.value="";
}
else if 
(document.form1.customer_mail.value=="") {
document.form1.customer_mail.value="Enter Your Email";
}
}