function isMail(sString) {
	 var emailEXP = /^[a-z_0-9\.]+@[a-z_0-9-\.]+\.[a-z]{2,3}$/i
     if (!sString.match(emailEXP)){
	 	return false;
	 }else{
	 	return true;
	 }
}

function checkData()
{
	var tmp = 0;
	var tempstr;
	tempstr="Please fill in the following fields:\n"
	tempstr = tempstr + "___________________________________________________\n\n";
	
	if (document.new_Project.company.value==""){
		tempstr = tempstr + "company\n"
		tmp = 1;
	}

	if (document.new_Project.name.value==""){
		tempstr = tempstr + "Name\n"
		tmp = 1;
	}
	
	if (document.new_Project.surname.value==""){
		tempstr = tempstr + "Surname\n"
		tmp = 1;
	}
	
	if (isMail(document.new_Project.email.value)==false){
		tempstr = tempstr + "Email\n"
		tmp = 1;
	}
	
	if (document.new_Project.phone.value==""){
		tempstr = tempstr + "Phone\n"
		tmp = 1;
	}
	
	if (document.new_Project.comments.value==""){
		tempstr = tempstr + "And what can we help you with?\n"
		tmp = 1;
	}
	
	if (tmp==1){
		tempstr = tempstr + "___________________________________________________";
		alert (tempstr);
	}
	
	else{
		document.new_Project.submit();
	}
}
function myreset(){
	document.new_Project.reset();
}