// code by galfano carboni


/*******************************************************************************
   Funciones para manejar mejor OverLib
*******************************************************************************/
function crea_texto_1(txt) {

   base = "<table cellpadding='10' cellspacing=''><tr><td><font face='Verdana, Arial, Helvetica, sans-serif' size='1' color='#505050'>" + txt + "</font></td></tr></table>";
   return base;
}

function carga_overlib(txt,tipo) {

   tipo = 1;

   if (tipo==1) txt = crea_texto_1(txt);
   vuelta = overlib(txt,WIDTH, 200, BGCOLOR, "#000000", FGCOLOR, "#EFEFEF", TEXTCOLOR, "#505050", OFFSETX, 15, OFFSETY, 20, BORDER, 1, PADX, 50, 5);
   return vuelta;
}

//activa el OverLib
document.write("<DIV ID='overDiv' STYLE='position:absolute; visibility:hidden; z-index:1000;'></DIV>");




