<!--
 function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->


// contact

function submit_solicitud(frm)
{
	var mensaje='Por favor, inserte el dato ';
	
	if(frm['form_1[nombre]'].value==''){
		alert(mensaje + "Nombre"); 
		frm['form_1[nombre]'].focus();
		return false;
	}
	if(frm['form_1[apellido]'].value==''){
		alert(mensaje + "Primer apellido"); 
		frm['form_1[apellido]'].focus();
		return false;
	}
	if(frm['form_1[email]'].value==''){
		alert(mensaje + "Email");
		frm['form_1[email]'].focus();
		return false;
	}else{
		if(!check_email(frm['form_1[email]'].value)){
			alert(mensaje + "Email");
			frm['form_1[email]'].focus();
			return false;   
		}  
	}
	frm.submit();
}
function check_email(address) { 
	if ( (address.indexOf ('@') == -1) || (address.indexOf ('.') == -1)) return false;   
	return true;
}

function ventanaNueva(documento,ancho,alto){
	var nombreVentana;
	nombreVentana="Grupo_Constant";
    window.open(documento, nombreVentana,'width=' + ancho + ', height=' + alto + ',status=no,scrollbars=yes,toolbar=no,resizable=yes,menubar=no');
}