function checkForm(){
	if(document.form1.name.value=="" || document.form1.email.value=="" || document.form1.company.value=="" || document.form1.country.value=="" || document.form1.message.value==""){
		window.alert("Please fill all the fields marked as *.");
	}else {
		checkEmail();
	}
}
function checkEmail() {
	var ok = 1;
	if (document.form1.email.value.indexOf("/") > -1) {
		window.alert("E-mail address has invalid character: /");
		ok = 0;
	}
	if (document.form1.email.value.indexOf(":") > -1) {
		window.alert("E-mail address has invalid character: :");
		ok = 0;
	}
	if (document.form1.email.value.indexOf(",") > -1) {
		window.alert("E-mail address has invalid character: ,");
		ok = 0;
	}
	if (document.form1.email.value.indexOf(";") > -1) {
		window.alert("E-mail address has invalid character: ;");
		ok = 0;
	}
	if (document.form1.email.value.indexOf("@") < 0) {
		window.alert("E-mail address is missing @");
		ok = 0;
	}
	if (document.form1.email.value.indexOf(".") < 0) {
		window.alert("E-mail address is missing .");
		ok = 0;
	}
	if (ok==1){
		document.form1.submit();	
	}
}
