//discriminacion de css
var browser=navegador;
if (browser=="Firefox")
{
	//alert(browser);
	document.write("<link href='css/ns.css' rel='stylesheet' type='text/css' />");
}
else if (browser=="Netscape")
{
	//alert(browser);
	document.write("<link href='css/ns.css' rel='stylesheet' type='text/css' />");
}
else if (browser=="Safari")
{
	//alert(browser);
	document.write("<link href='css/safari.css' rel='stylesheet' type='text/css' />");
}
else
{
	//alert(browser);
	document.write("<link href='css/ie.css' rel='stylesheet' type='text/css' />");
}

//cambia imágenes al pasar el ratón por encima
function cambiaImagen (fuente,id)
{
    document.images[id].src = fuente;
}

//cambiamos el fondo del menu
function cambiaFondo(id)
{
	document.getElementById(id).style.background='url(./img/cel.gif)';
}

function devuelveFondo(id)
{
	document.getElementById(id).style.background='url(./img/ce.gif)';
}

function popi(x,w,h)
{
	window.open(x+'.inc.php','x','width='+ w +',height='+ h +'');
}

function cambiaFondo2(capa)
{
	document.getElementById(capa).style.backgroundImage='url(img/bt200a.png)';
}
function vuelveFondo2(capa)
{
	document.getElementById(capa).style.backgroundImage='url(img/bt200.png)';
}
