function checkForm(){
    var elmt = document.forms["daForm"].elements["name"];
	var elmt2 = document.forms["daForm"].elements["email"];
	//var tdoc=document.daForm;
		if((elmt.value=="") || (elmt.value=="Name")){			
		alert("Please enter your name");
		elmt.focus();
		return false;
		}		
		/* if (elmt2.value == "" || elmt2.value == "Email Address" || elmt2.value.indexOf('@') == -1 || elmt2.value.indexOf('.') == -1 || elmt2.value.length<5){ 
		alert("Please enter a valid email address");
		elmt2.value="";
		elmt2.focus();  
		return false;   
		} */

	return true;

}