<!-- 01100011 01100001 01100110 01100001 01110010 01101110 01100001 01110011 -->

// Quitar Frame
function quitarFrame()
{
 if (self.parent.frames.length != 0)
 self.parent.location=document.location.href;
}
quitarFrame()
//-->

// Evita usar el boton derecho del ratón
//document.oncontextmenu = function(){return false}
//-->

// Ocultar txt
function desplegar(cor)
{
	vista=document.getElementById(cor).style.display;
	if (vista=='none')
		vista='block';

	else
		vista='none';

	document.getElementById(cor).style.display = vista;


}


//-->

/* Imprimir */
function imprimir() {
Sexy.confirm('<b>Imprimir!</b><br/><br/>Antes de imprimir, piense en su responsabilidad y compromiso con el <u>MEDIO AMBIENTE</u>.', {
  onComplete: 
    function(returnvalue) {
      if (returnvalue) {
        window.print();
      } else {

//---- nel

      }
    }
  });
}
//-->

// alerta antiguo alumno
function antiguoalumno(){
	Sexy.alert('<p>Por favor, en la caja <b>“Comentarios”</b> indicar la Fecha y el Curso que realizó.</p><br>');
	}


// desplegar ciudades al marcar españa!
function spain(){
if(document.sugerir_recurso.pais.value=="España"){

document.sugerir_recurso.ciudad.disabled=false;

}else{

document.sugerir_recurso.ciudad.disabled=true;
document.sugerir_recurso.ciudad.value=''

}
}

<!-- solo numeros -->

function solonumeros(e) {
var charCode 
charCode = e.keyCode 
status = charCode 
if (charCode > 31 && (charCode < 48 || charCode > 57)) {
return false
}
return true
}



<!-- anti spam -->
function email() {
document.location = 'mailto:'+'info'+'@'+'iart.es';

}

// confirmar
function checkCheckBox(f){
if (f.agree.checked == false ){
Sexy.alert('Por favor, acepte <a href="aviso_legal.php" target="_blank">Términos y Condiciones</a> antes de ENVIAR.');

return false;
} else {
return true;
}
}

function Aceptar(f){
if (f.dato_1.checked == false ){
Sexy.alert('Por favor, acepte <a href="aviso_legal.php" target="_blank">Términos y Condiciones</a> antes de ENVIAR.');

return false;
} 

   if (document.frm.nombre.value.length==0 || document.frm.apellidos.value.length==0 || document.frm.email.value.length==0 || document.frm.telperso.value.length==0 || document.frm.direccion.value.length==0 || document.frm.cpostal.value.length==0 || document.frm.provincia.value.length==0 || document.frm.epais.value.length==0 || document.frm.dato_2.value.length==0){
		 Sexy.error('<b>ERROR!</b><br/><br/>Todos los campos son obligatorios.');
       return false;
    } 

	
else {
return true;
}
}


/* bajas y altas Newsletter */
function bajAlta(){
if(document.frm.mode.value=="inact"){
// baja
document.frm.url_ok.value="http://www.iart.es/moda/newsletter.php?msg=3";

}else{
// msg alta
document.frm.url_ok.value="http://www.iart.es/moda/newsletter.php?msg=1";
	}
	
}

