//------------------------------
// Utilerias Básicas
// J. Rivelino Martínez
// FechaC: Mayo 2002
// FechaM: Agosto 2007
//------------------------------

function ffechalarga() { 
  var today = new Date();
  var year = today.getFullYear();
  var date = today.getDate();
  var todays_date = new Date;
  var fecha;

  if (year < 100)
   year = 1900 + year;
  days = new Array("Domingo","Lunes","Martes","Mi&eacute;rcoles","Jueves","Viernes","Sabado");
  months = new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
  document.writeln(days[todays_date.getDay()] + " " + date + " de " + months[todays_date.getMonth()] + " del " + year);
}

function ffechames() { 
  var today = new Date();
  var year = today.getFullYear();
  var date = today.getDate();
  var todays_date = new Date;
  var fecha;

  if (year < 100)
   year = 1900 + year;
  months = new Array("Ene","Feb","Mar","Abr","May","Jun","Jul","Ago","Sep","Oct","Nov","Dic");
  document.writeln(date + " " + months[todays_date.getMonth()] + " " + year);
}

function ffechacorta() { 
  var today = new Date();
  var year = today.getYear();
  var date = today.getDate();
	var month = today.getMonth();

  if (year < 100)
    year = 1900 + year;
  document.writeln(date + "." + month + "." + year);
}

function imprimirPagina() {
	if (window.print) window.print();
	else alert("Lo siento, pero a tu navegador no se le puede ordenar imprimir" + " desde la web. Actualizate o hazlo desde los menús"); 
} 

function popUpWindow(URLStr,ancho,largo){
	popUpWin = open(URLStr, 'popUpWin', 'toolbar=no, location=no, status=no, menubar=no, scrollbar=no, resizable=no, width='+ancho+', height='+largo);
}