// JavaScript Document
function navie() {
	var browserType=navigator.userAgent;
	if (browserType.indexOf("MSIE")==-1) {
		return false;
	}
	else {
		return true;
	}
}

/*function comprueba_nav() {
	if (navie()) {
		document.write('<object type="application/x-shockwave-flash" data="flash/cabecera.swf" width="758" height="209" name="cabeflash" id="cabe"> <param name="movie" value="flash/cabecera.swf" /> <param name="quality" value="high" /></object>');
	}
	else {
		document.all.write('<img src="fotos/cabe_alt.jpg" border="0" usemap="#Map"><map name="Map"><area shape="rect" coords="496,29,758,86" href="indata.php" alt="GRUPO BMC - INDATA : Tarjetas pl&aacute;sticas"><area shape="rect" coords="496,91,757,147" href="ged.php" alt="GRUPO BMC - GED : Grabaci&oacute;n de datos, Tratamiento de datos"><area shape="rect" coords="497,152,757,209" href="cp.php" alt="GRUPO BMC - CP"></map>');
	}
}*/

function contactar() {
	 PosX = (screen.availWidth - 613)/2;
	 PosY = (screen.availHeight - 620)/2;
	 ventana=window.open('contactar.htm','',"width=613,height=620,left=" + PosX + ",top=" + PosY + ",menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,titlebar=no");
}

function boletin() {
	if (document.form1.email.value != "") {
	 PosX = (screen.availWidth - 250)/2;
	 PosY = (screen.availHeight - 125)/2;
	ventana=window.open('','ventana',"width=250,height=125,left="+PosX+",top="+PosY+",menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,titlebar=no");
	document.form1.submit();
	}
	else {
		alert("Debe introducir su e-mail.");
	}
}

function ir(n,x) {
	var n;
	contenido.location.href = "ged.htm#" + n;
	carga(x);
}


function carga(x) {
		document.getElementById('cabe').SetVariable('apartado',x);
}

function abrir(n,w,h){
	 PosX = (screen.availWidth - w)/2;
	 PosY = (screen.availHeight - h)/2;
	 ventana=window.open(n,'',"width=" + w + ",height=" + h + ",left=" + PosX + ",top=" + PosY + ",menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no,titlebar=no");	
}