// JavaScript Document

function validate_frmcomunicazioni(){
	if(document.getElementById("selregion").value==0){
		alert("Please select region.");
		document.getElementById("selregion").focus();
		return false;
	} 
	if(checkblank("txtname","Name")==false) return false;
	if(checkblank("txtsurname","Surname")==false) return false;
	if(checkblank("txtcontact_info","E-mail o telefono")==false) return false;
	return true;	
}