function fct1(){
	alert("alors");
	}
function fct(){
ecrit="Please review the required field(s) below: \n\n";
alors=0;
if (document.frm.Company.value==""){
	ecrit+="-->  Company \n";
	alors=1;
	}
if (document.frm.FirstName.value==""){
	ecrit+="-->  First Name \n";
	alors=1;
	}
if (document.frm.LastName.value==""){
	ecrit+="-->  Last Name \n";
	alors=1;
	}
if (document.frm.EmailAddress.value==""|| verifMail(document.frm.EmailAddress.value)){
	ecrit+="-->  Email Address \n";
	alors=1;
	}
if (document.frm.CheckEmail.value!=document.frm.EmailAddress.value){
	ecrit+="-->  Email Address \n";
	alors=1;
	}
if (document.frm.Tel.value==""){
	ecrit+="-->  Phone Number \n";
	alors=1;
	}
if(document.frm.CompanyAddress1.value==""){
	ecrit+="-->  Company Address \n";
	alors=1;
	}
if (document.frm.City.value==""){
	ecrit+="-->  City \n";
	alors=1;
	}
if (document.frm.State.value==""){
	ecrit+="-->  State \n";
	alors=1;
	}
if (document.frm.ZipCode.value==""){
	ecrit+="-->  Zip Code \n";
	alors=1;
	}
if (document.frm.Quantity.value=="" || isNaN(document.frm.Quantity.value)){
	ecrit+="-->  Number of Handhelds \n";
	alors=1;
	}
if(document.frm.TradeShow.checked==false & document.frm.SalesRep.checked==false & document.frm.RepGroup.checked==false & document.frm.ComServer.checked==false ){
	ecrit+="-->  Logiciel Products \n";
	alors=1;
	}
if (document.frm.InventorySystem.value==""){
	ecrit+="-->  Inventory/ERP System \n";
	alors=1;
	}

if(alors==1) 
	alert(ecrit);
else 
	document.frm.submit();


}

function verifMail( email )
{
var maReg = new RegExp ( "^\\w[\\w+\.\-]*@[\\w\-]+\.\\w[\\w+\.\-]*\\w$", "gi" ) ;
 
if ( email.search( maReg ) == -1 )
	return true;
else
	return false;
}