/* ---------------------------- Fecha -------------------------- */
function fecha(){
fecha = new Date()
mes = fecha.getMonth()
diaMes = fecha.getDate()
diaSemana = fecha.getDay()
anio = fecha.getFullYear()
dias = new Array('Domingo','Lunes','Martes','Miercoles','Jueves','Viernes','Sábado')
meses = new Array('Enero','Febrero','Marzo','Abril','Mayo','Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre')
document.write('<span id="fecha">')
document.write (dias[diaSemana] + " " + diaMes + " de " + meses[mes] + " de " + anio)
document.write ('</span>')
}
/* ---------------------------- Agregar a Favoritos -------------------------- */
var bookmarkurl="http://www.electro2001.com.ar"
var bookmarktitle="Tolket S.R.L. - Buenas Ideas"

function addbookmark(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
/* ---------------------------- Funcion Combos -------------------------- */
function go(x)
{
 var j=x.options[x.selectedIndex].value;
 if(j != "")
         window.open(j,'_self','');
}
