<!--
/*************************************************************************************************

*************************************************************************************************/
function send_feedback(){
	var strError="";
	
	if(chkSpace(document.frm.txtname)=="")
		strError=strError+"\nName Required";
  
 	if(chkSpace(document.frm.txtemail)==""){
 		strError=strError+"\nEmail Required";
  	}else{
    		if(checkEmail(document.frm.txtemail.value)==0)
    			strError=strError+"\nInvalid Email";
  	}
  	
  	if(chkSpace(document.frm.txtenquiry)=="")
  		strError=strError+"\nEnquiry Required";
  
  	if(strError==""){
  		return true;
  	}else{
  		alert(StrInitialMsg + strError);
  	return false;
  }
} 


//-->
