/* **************************************************************************** * Creador: Ivan Salazar * * Fecha de creaci�n: Feb/2007 * * * **************************************************************************** */ function $(objectID) { if(document.layers) return document.layers[objectID]; else if(document.all) return eval('document.all.' + objectID); else return document.getElementById(objectID); } function GoLink( object, url ) { object.style.backgroundColor='#444'; document.location.href = url; } function PrintDate() { var fecha=new Date(); var textomes = [ "Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic" ]; document.write( fecha.getDate() + "/" + textomes[fecha.getMonth() + 1] + "/" + fecha.getFullYear() ); } window.onload = function() { setTimeout(function(){window.scrollTo(0, 1);}, 100); }