function high(which2)
{
theobject=which2;
highlighting=setInterval("highlightit(theobject)",50);
}
function low(which2)
{
clearInterval(highlighting);
}
function highlightit(cur2)
{
}
function abreventana(mipage,mititulo,ancho,alto)
{
aWindow= open(mipage,mititulo,'scrollbars=no,toolbar=no,status=no,resizable=yes,width=' + ancho + ',height=' + alto);
}
function abremapa(mipage,mititulo,ancho,alto)
{ mapaWindow= open(mipage,mititulo,'scrollbars=true,toolbar=no,status=no,resizable=yes,width=' + ancho + ',height=' + alto);
mapaWindow.scroll(500,500)
}
function showPict(larg, haut, pathPict)
{
chemin = pathPict;
var t = "";
var theWindow;
theWindow = window.open("","top","bar=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+larg+",height="+haut+",screenX=0,left=0,screenY=0,top=0");
t += "\n";
t += "
\n";
t += "tim\n";
t += "\n";
t += " \n";
t += " \n";
t += " \n";
t += " ";
t += " \n";
t += " \n";
t += " | \n";
t += " \n";
t += "  | \n";
t += " \n";
t += " \n";
t += " | \n";
t += "
\n";
t += " | www.transibermar.com |
\n";
t += "
\n";
t += " \n";
t += "\n";
theWindow.document.clear();
theWindow.document.write(t);
}
function fecha()
{
var x, mimes="";
fecha=new Date();
dia=fecha.getDate();
mes=fecha.getMonth();
var x=new Array("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio");
var x=x.concat("Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre");
mimes+=x[mes];
anual=fecha.getFullYear();
document.write(dia + " de " + mimes + " de " + anual);
}
function diasemana()
{
var x, midia="";
fecha=new Date();
dia=fecha.getDay();
var x=new Array("del descanso", "de las nuevas adivinanzas", "de las nuevas canciones", "de los nuevos trabalenguas", "de la magia", "del bricolaje", "del descanso");
midia+=x[dia];
document.write(midia);
}