function estilos()
{
	navegador = navigator.appName
	version = parseInt(navigator.appVersion)
	if ((navegador=="Netscape") && (version < 5))
	{
		document.write('<link rel="stylesheet" href="/includes/estilos_n.css" type="text/css">');	
	}else {	
		document.write('<link rel="stylesheet" href="/includes/estilos_ex.css" type="text/css">');		
	}
}
function dibuja_espaciov(centro)
{
	if (screen.width>800)
	{
		if (centro)
		{
			document.write ("<td width='107' bgcolor='#5F6C73'><img src='/images/shim.gif' width='107' height='500'></td>")
		}else{
			document.write ("<td width='107' bgcolor='#5F6C73'><img src='/images/shim.gif' width='107' height='1'></td>")
		}
		
	}
}
function over(nombre, imagen)
{
	nombre.src = imagen;
}

function tamano()
{
	window.moveTo(0,0);
	window.resizeTo(anchura_t,altura_t);
}

function abrePopup (url,ancho,alto,scroll)
{
	var scrollValue = 0;
	if (scroll)
		scrollValue = 1;
	var dimensiones = "height=" + alto + ",width=" + ancho + ",resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,top=40,left=200,scrollbars=" + scrollValue;
	var wPop = window.open(url,"wPop",dimensiones);
  wPop.focus();
}