<!--
// --------------------------------------------------------------------
// *** Elimina la visualización dentro de framesets
// --------------------------------------------------------------------
if (top!=self.parent) {	top.location=self.parent.location; }
// --------------------------------------------------------------------
// *** Funcion noSpam - Remite un correo electrónico desde Javascript
// --------------------------------------------------------------------
function mailnobot(nm,dm)
{
   mailurl = "mailto:" + nm + "@" + dm;
   window.location = mailurl;
}
// --------------------------------------------------------------------
// *** Funcion bookmark - Permite añadir la página actual a los Favoritos.
// --------------------------------------------------------------------
function bookmark() {	
	if (navigator.appName=='Microsoft Internet Explorer') {
		window.external.AddFavorite(window.document.location,window.document.title);
	} else if (navigator.appName=='Netscape') {
		alert("Haga click en ACEPTAR y entonces presione CTRL+D para añadir esta página a sus marcadores.");
	}
}
// --------------------------------------------------------------------
// *** Funcion disableRightClick - Desactiva el boton derecho del raton
// --------------------------------------------------------------------
function disableRightClick(e) {
  if(!document.rightClickDisabled) {
    if(document.layers) {
      document.captureEvents(Event.MOUSEDOWN);
      document.onmousedown = disableRightClick;
    }
    else document.oncontextmenu = disableRightClick;
    return document.rightClickDisabled = true;
  	}
	return false;
}
window.onload = disableRightClick;


// --------------------------------------------------------------------
// *** Funcion Oculta/Mustra - 
// --------------------------------------------------------------------


function oculta(id) {
	if (document.getElementById) //NS6
	{
		x = document.getElementById(id);
		x.style.visibility = "hidden";
	}
	else if (document.all) //IE
	{
		x = document.all[id];
		x.style.visibility = "hidden";
	}
}

function muestra(id) {
	if (document.getElementById) //NS6
	{
		x = document.getElementById(id);
		x.style.visibility = "visible";
	}
	else if (document.all) //IE
	{
		x = document.all[id];
		x.style.visibility = "visible";
	}
}


// --------------------------------------------------------------------
// *** Función Abre Ventana en el centro - 
// --------------------------------------------------------------------


function openLowCarbFloater() {
  var centerX = (((screen.width-450)/2));
  var centerY = (((screen.height-372)/2));
  windowprops = "width=450,height=372,innerWidth=450,innerHeight=372,left=" + centerX + ",top=" + centerY + ",screenX=" + centerX + ",screenY=" + centerY +",location=no,menubar=no,personalbar=no,resizable=no,locationbar=no,scrollbars=no,directories=no,statusbar=yes,toolbar=no";
  mainWin = window.open(page,'popup', windowprops);
  mainWin.focus();
}



// --------------------------------------------------------------------
// *** Función comprobar campos - 
// --------------------------------------------------------------------




function comprobar() {

	if (document.forms[0].correo.value == '') {
		alert ('Su correo no es correcto.');
		document.forms[0].correo.focus();
		return false;
	};

};



function check() {

	if (document.forms[0].correo.value == '') {
		alert ('Check your mail.');
		document.forms[0].correo.focus();
		return false;
	};

};



//-->
