

onerror=handleErr;
var txt="";

function handleErr(msg,url,l)
{
txt="There was an error on this page.\n\n";
txt+="Error: " + msg + "\n";
txt+="URL: " + url + "\n";
txt+="Line: " + l + "\n\n";
txt+="Click OK to continue.\n\n";
alert(txt);
return false;
}


function validateReg(){
	
	noError = true;
	
	companyId = document.getElementById("companyId");
	nameId = document.getElementById("nameId");
	lastNameId = document.getElementById("lastNameId"); 
	emailId = document.getElementById("emailId");
	cityId = document.getElementById("cityId");  
    zipcodeId = document.getElementById("zipcodeId");
	countryId = document.getElementById("countryId");
	addressId = document.getElementById("addressId");
	phoneId = document.getElementById("phoneId");
	roadshowId = document.getElementById("roadshowId");
		
	companyLabel = document.getElementById("companyLabelId");
	nameLabel = document.getElementById("nameLabelId");
	lastNameLabel = document.getElementById("lastNameLabelId"); 
	emailLabel = document.getElementById("emailLabelId");
	cityLabel = document.getElementById("cityLabelId");  
    zipcodeLabel = document.getElementById("zipcodeLabelId");  
	countryLabel = document.getElementById("countryLabelId");
	addressLabel = document.getElementById("addressLabelId");
	phoneLabel = document.getElementById("phoneLabelId");
	roadshowLabel = document.getElementById("roadshowLabelId");

	

	
	if(companyId.value==""){
		noError = false;
		companyId.style.borderColor="#FF0000";
		companyLabel.style.color="#FF0000";
	} else {
		companyLabel.style.color="#000000";
		//companyId.removeAttribute("style");
		companyId.style.borderColor=("#000000");
			
	}
	
	if(nameId.value==""){
		noError = false;
		nameId.style.borderColor="#FF0000";
		nameLabel.style.color="#FF0000";
	} else {
		nameLabel.style.color="#000000";
		//nameId.removeAttribute("style");
		nameId.style.borderColor=("#000000");
		
	}
	
	if(lastNameId.value==""){
		noError = false;
		lastNameId.style.borderColor="#FF0000";
		lastNameLabel.style.color="#FF0000";
	} else {
		lastNameLabel.style.color="#000000";
		//lastNameId.removeAttribute("style");
		lastNameId.style.borderColor=("#000000");
	}
	
	if(!emailCheck(emailId.value)){
		noError = false;
		emailId.style.borderColor="#FF0000";
		emailLabel.style.color="#FF0000";
	} else {
		emailLabel.style.color="#000000";
		//emailId.removeAttribute("style");
		emailId.style.borderColor=("#000000");
	}
	
	if(cityId.value==""){
		noError = false;
		cityId.style.borderColor="#FF0000";
		cityLabel.style.color="#FF0000";
	} else {
		cityLabel.style.color="#000000";
		//cityId.removeAttribute("style");
		cityId.style.borderColor=("#000000");
	}
    
    if(zipcodeId.value==""){
		noError = false;
		zipcodeId.style.borderColor="#FF0000";
		zipcodeLabel.style.color="#FF0000";
	} else {
		zipcodeLabel.style.color="#000000";
		//zipcodeId.removeAttribute("style");
		zipcodeId.style.borderColor=("#000000");
	}
	
	if(addressId.value==""){
		noError = false;
		addressId.style.borderColor="#FF0000";
		addressLabel.style.color="#FF0000";
	} else {
		addressLabel.style.color="#000000";
		//addressId.removeAttribute("style");
		addressId.style.borderColor=("#000000");
	}
	
	if(phoneId.value==""){
		noError = false;
		phoneId.style.borderColor="#FF0000";
		phoneLabel.style.color="#FF0000";
	} else {
		phoneLabel.style.color="#000000";
		//phoneId.removeAttribute("style");
		phoneId.style.borderColor=("#000000");
	}
	
	if(countryId.value=="0"){
		noError = false;
		countryLabel.style.color="#FF0000";
	} else {
		countryLabel.style.color="#000000";
		
	}
		
	return noError;
}