<!--
var StrInitialMsg="Alert !!! Check the following fields\n---------------------------------------------------"
var strEnd="\n---------------------------------------------------"
var StrVal="";
val=0;
//************************************************************
function send_feedback(send_feedback)
{
   var strError="";
	
   if(chkSpace(document.frmfeedback.fullname)=="")
	strError=strError+"\nEnter full name";

   if(chkSpace(document.frmfeedback.email)=="" || checkEmail(document.frmfeedback.email.value)==0)
	strError=strError+"\nEnter valid email";

   if(document.frmfeedback.cmbcountry.options[document.frmfeedback.cmbcountry.selectedIndex].value=="")
	strError=strError+"\nSelect country";

   if(chkSpace(document.frmfeedback.subject)=="")
	strError=strError+"\nEnter subject";

   if(chkSpace(document.frmfeedback.feedback)=="")
	strError=strError+"\nEnter feedback";

    if(strError!="")
	alert(StrInitialMsg + strError);
    else{
    	document.frmfeedback.method="post";
	document.frmfeedback.action=send_feedback;
	document.frmfeedback.submit();
    }
	
}



//-->
