// JavaScript Document

	//si salgo de cualquier pagina, actualizo la barra inferior
	function salir(){
		//alert("sale")
		//window.top.minimizados.location.reload();
		//top.location.reload();
	}
	
var browser;
if (navigator.platform.indexOf('MacPPC') >= 0) {
	if (navigator.userAgent.indexOf('MSIE 5') >= 0) {
		//hoja estilos mac explorer 5
		document.writeln('<LINK rel="stylesheet" type="text/css" href="css/estilos.css">');
	} 
	else {
		//hoja estilos mac NO explorer
	document.writeln('<LINK rel="stylesheet" type="text/css" href="css/estilos.css">');
	} 
}
else {
//PC
	if((navigator.appName=="Microsoft Internet Explorer")&&(parseInt(navigator.appVersion)>=4))
		//EXPLORER
		document.writeln('<LINK rel="stylesheet" type="text/css" href="css/estilos.css">');
		//NETSCAPE 4
	else if((navigator.appName=="Netscape")&&(navigator.appVersion.indexOf("4.")>=0))
		document.writeln('<LINK rel="stylesheet" type="text/css" href="css/estilosNS.css">'); 
		//NETSCAPE 5
	else if((navigator.appName=="Netscape")&&(navigator.appVersion.indexOf("5.")>=0))
		document.writeln('<LINK rel="stylesheet" type="text/css" href="css/estilosNS.css">');
}
//resolucion de pantalla
x = screen.width;
y = screen.height;
if (x<=800){
	document.writeln('<LINK rel="stylesheet" type="text/css" href="css/estilos800.css">');
}

