function sendform(){
	
	var emailFilter=/^.+@.+\..{2,3}$/;

	if(!emailFilter.test(document.form_sendmail.frommail.value)){ 
		document.getElementById('row_mail').innerHTML="E-mail is incorrect !!";
		document.getElementById('row_mail').className="required";
		document.form_sendmail.frommail.focus(); 
	}else{
		document.getElementById('row_mail').innerHTML="";
		document.getElementById('row_mail').className="ok";
		document.getElementById('row_mail').display="none";
	}

	if(document.form_sendmail.fromname.value==""){ 
		document.getElementById('row_name').innerHTML="Cannot use this name !!";
		document.getElementById('row_name').className="required";
		document.form_sendmail.fromname.focus(); 
	}else{
		document.getElementById('row_name').innerHTML="";
		document.getElementById('row_name').className="ok";
		document.getElementById('row_name').display="none";
	}

	if(document.form_sendmail.fromname.value != "" & emailFilter.test(document.form_sendmail.frommail.value) ){
		document.form_sendmail.submit();
	}
	
}

