// JavaScript Document

function mouseOver(src,color_entrada) { 
    src.bgColor=color_entrada;src.style.cursor="hand"; 
} 
function mouseOut(src,color_default) { 
    src.bgColor=color_default;src.style.cursor="default"; 
} 
function popUp(URL,widthw,heightw) {
day = new Date();
id = day.getTime();
x = (screen.width - widthw) / 2;
y = (screen.height - heightw) / 2;
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+ widthw + ",height=" + heightw + ",left =" + x + ",top =" + y +"');");
}