function check(){
	if($('txtName').value==''){
		alert("Por favor, ingrese su nombre");
		return false;
	}
	if($('txtEmail').value==''){
		alert("Por favor, ingrese su E-mail");
		return false;
	}
	if($('txtCompany').value==''){
		alert("Por favor, ingrese el nombre de su compañía");
		return false;
	}
	if($('txtCountry').value==''){
		alert("Por favor, ingrese su país");
		return false;
	}
	if($('txtCity').value==''){
		alert("Por favor, ingrese su ciudad");
		return false;
	}
	if($('txtMessage').value==''){
		alert("Por favor, ingrese su mensaje");
		return false;
	}
	
	return true;
}