function menuOn(objeto){
	 objeto.style.background="#FFFFFF";
     //objeto.style.color="#999966";
     window.status=objeto.innerText;
}
function menuOff(objeto){
     objeto.style.background="#999966";
    // objeto.style.color="#333300";
     window.status="";
}

function popUp(URL,ancho, alto) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+ancho+",height="+alto+"');");
}
function popUp2(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0');");
}
