<!--
// JavaScript Document
var resPantalla = screen.width<=800 && document.all;
var bAgent		= window.navigator.userAgent.toLowerCase();
var isMac		= bAgent.indexOf("mac")!=-1;
//*** ventana centrada ***
function ventanaCentrada(doc,nombre,anchura,altura){
	xpos = ((screen.width)/2)-(anchura/2);
	ypos = ((screen.height)/2)-(altura/2);
	ventanaFlotante = window.open(doc,nombre,'width='+anchura+',height='+altura+',left='+xpos+',top='+ypos+'directories=0,resizable=0,location=0,status=0,scrollbars=1,toolbar=0,menubar=0,titlebar=1');
}
function ventanaCentradaFlash(doc,nombre,anchura,altura){
	xpos = ((screen.width)/2)-(anchura/2);
	ypos = ((screen.height)/2)-(altura/2);
	ventanaFlotante = window.open(doc,nombre,'width='+anchura+',height='+altura+',left='+xpos+',top='+ypos+'directories=0,resizable=0,location=0,status=0,scrollbars=0,toolbar=0,menubar=0,titlebar=1');
}
-->
