// JavaScript Document
function chkdata(thisform) {                      
	if (emptyf(thisform.Company)) focusfield(thisform.Company,"You must specify the Company Name."); 
	else if (emptyf(thisform.sltworld)) focusfield(thisform.sltworld,"You must specify a product.");  
	else if (emptyf(thisform.name)) focusfield(thisform.name,"You must specify the First Name."); 
	else if (emptyf(thisform.lastname)) focusfield(thisform.lastname,"You must specify the Last Name."); 

	else if(emptyf(thisform.email)) focusfield(thisform.email,"You must specify the E-mail.");
	else if (EmailField(thisform.email)==false) focusfield(thisform.email,"E-mail error!");	
	else if (emptyf(thisform.phone)) focusfield(thisform.phone,"You must specify the Phone Number."); 
	else if (emptyf(thisform.info)) focusfield(thisform.info,"You must be required field the Message."); 
    else if (emptyf(thisform.verify)) focusfield(thisform.verify,"You must specify the Verify Number.");
//	else if (emptyf(thisform.city)) focusfield(thisform.city,"You must specify a Phone city");
//	else if (emptyf(thisform.state)) focusfield(thisform.state,"You must specify a Phone state");
//	else if (emptyf(thisform.zipcode)) focusfield(thisform.zipcode,"You must specify a Phone zip code");                            
	else {     
          return true;
  
	}   
	return false;   
}