function validar_contactar(f) {
	var isEmpresa = f.Es_empresa.options[f.Es_empresa.selectedIndex].value;
	if (isEmpresa=='No') {
		MM_validateForm('Nombre','','R','Apellidos','','R','Calle','','R','num','','R','Poblacion','','R','Provincia','','R','cp','','R','telefono','','R','Email','','RisEmail');
	} else {
		MM_validateForm('Nombre','','R','Apellidos','','R','Empresa','','R','CIF','','R','Actividad','','R','Calle','','R','num','','R','Poblacion','','R','Provincia','','R','cp','','R','telefono','','R','Email','','RisEmail');
	}
	if (document.MM_returnValue) {
		f.action="/info/enviar_email.php";
		f.submit();
	}
}

function switch_empresa(obj) {
	var isEmpresa = obj.options[obj.selectedIndex].value;
	var empresadiv = document.getElementById("show_empresa");
	empresadiv.style.display = (isEmpresa=='No')? 'none' : 'block';
}


