function color_in(src,color_entrada) { 
    src.bgColor=color_entrada;src.style.cursor="hand"; 
} 
function color_out(src,color_default) { 
    src.bgColor=color_default;src.style.cursor="default"; 
} 
function abrepp(url, ancho, largo, nombre, scroll){
window.open(url,nombre,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+scroll+",resizable=0,width="+ancho+",height="+largo+",left=5,top=20");
}