function checkServicesForm() {
	if(navigator.userAgent.indexOf("MSIE")==-1)
		var thisform=document.servicesForm;
	else
		var thisform=servicesForm;
	
	if (Jtrim(thisform.name.value)=='') {
                window.alert ("Please specify your name.")
		thisform.name.focus();
                return false;
        }
			
        if (Jtrim(thisform.email.value)=='') {
                window.alert ("Please specify your email.")
		thisform.email.focus();
                return false;
        }
        
		
	if (!isEmpty(thisform.email.value)){
		if (!isEmail(thisform.email.value)){
			window.alert('Please specify the current email.');thisform.email.focus();return false;	
		}
	}
	
	if (Jtrim(thisform.tel.value)=='') {
                window.alert ("Please specify a business phone.")
		thisform.tel.focus();
                return false;
        }
	
	
        
        if (Jtrim(thisform.companyname.value)=='') {
                window.alert ("Please specify your comapny name.")
		thisform.companyname.focus();
                return false;
        }

}
