function Check_vars() {
	if (FrontPage_Form1.company.value == "") {
		alert("Mandatory Field.") ;
		FrontPage_Form1.company.focus();
        return(false) ;
	}
	if (FrontPage_Form1.occupation.value == "") {
		alert("Mandatory Field.") ;
		FrontPage_Form1.occupation.focus();
        return(false) ;
	}
	if (FrontPage_Form1.country.value == "") {
		alert("Mandatory Field.") ;
		FrontPage_Form1.country.focus();
        return(false) ;
	}
	if (FrontPage_Form1.phone.value == "") {
		alert("Mandatory Field.") ;
		FrontPage_Form1.phone.focus();
        return(false) ;
	}
	if (FrontPage_Form1.email.value == "") {
		alert("Mandatory Field.") ;
		FrontPage_Form1.email.focus();
        return(false) ;
	}		
	return(true) ;
}