<!-- Script para abrir popup -->
function abrirPopup(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

<!-- Script para data -->
function writeDate(){
  var thetime=new Date();
  var nday=thetime.getDay();
  var nmonth=thetime.getMonth();
  var ntoday=thetime.getDate();
  var nyear=thetime.getYear();

  if (nday==0) nday="Domingo";
  if (nday==1) nday="Segunda";
  if (nday==2) nday="Terça";
  if (nday==3) nday="Quarta";
  if (nday==4) nday="Quinta";
  if (nday==5) nday="Sexta";
  if (nday==6) nday="Sábado";

  if (nmonth==0) nmonth="janeiro";
  if (nmonth==1) nmonth="fevereiro";
  if (nmonth==2) nmonth="março";
  if (nmonth==3) nmonth="abril";
  if (nmonth==4) nmonth="maio";
  if (nmonth==5) nmonth="junho";
  if (nmonth==6) nmonth="julho";
  if (nmonth==7) nmonth="agosto";
  if (nmonth==8) nmonth="setembro";
  if (nmonth==9) nmonth="outubro";
  if (nmonth==10) nmonth="novembro";
  if (nmonth==11) nmonth="dezembro";

  if (nyear<=99)
      nyear= "19"+nyear;
  if ((nyear>99) && (nyear<2000))
      nyear+=1900;
  document.write(nday+", "+ntoday+" de "+nmonth+" de "+nyear);
}
