function noSource()
{
 if (event.button == 2 | event.button == 3)
  {
   alert ("WWW.LIDERCOM.COM");
  }
}


function noSourceIExplorer()
{
 if (event.button == 2 | event.button == 3)
  {
   alert ("http://www.lidercom.com");
  }
}


function freDigital()
{
 if (navigator.appName.indexOf("Internet Explorer") != -1)
  document.onmousedown = noSourceIExplorer;
}


function DiayHora()
{
var fecha = new Date();
var dd,mm,aa,hh,mi,ss;
var strfecha;
dd = fecha.getDay();
mm = fecha.getMonth();
aa = fecha.getFullYear();
strfecha = " ";
if (dd == 0) {strfecha = strfecha + "Domingo "}
if (dd == 1) {strfecha = strfecha + "Lunes "}
if (dd == 2) {strfecha = strfecha + "Martes "}
if (dd == 3) {strfecha = strfecha + "Miercoles "}
if (dd == 4) {strfecha = strfecha + "Jueves "}
if (dd == 5) {strfecha = strfecha + "Viernes "}
if (dd == 6) {strfecha = strfecha + "Sabado "}
dd = fecha.getDate();
if (dd < 10) dd = "0" + dd;
strfecha = strfecha + dd + ' de '
if (mm == 0) {strfecha = strfecha + "Enero"}
if (mm == 1) {strfecha = strfecha + "Febrero"}
if (mm == 2) {strfecha = strfecha + "Marzo"}
if (mm == 3) {strfecha = strfecha + "Abril"}
if (mm == 4) {strfecha = strfecha + "Mayo"}
if (mm == 5) {strfecha = strfecha + "Junio"}
if (mm == 6) {strfecha = strfecha + "Julio"}
if (mm == 7) {strfecha = strfecha + "Agosto"}
if (mm == 8) {strfecha = strfecha + "Septiembre"}
if (mm == 9) {strfecha = strfecha + "Octubre"}
if (mm == 10) {strfecha = strfecha + "Noviembre"}
if (mm == 11) {strfecha = strfecha + "Diciembre"}
strfecha = strfecha + ' de ' + aa;
hh = fecha.getHours();
mi = fecha.getMinutes();
ss = fecha.getSeconds();
if (hh < 10) hh = "0" + hh;
if (mi < 10) mi = "0" + mi;
if (ss < 10) ss = "0" + ss;
strfecha = " " + strfecha + "  -  " + hh + ":" + mi + ":" + ss;
window.status = strfecha;
setTimeout('DiayHora()',1001);
}

