<!--
var now = new Date();
var mName = now.getMonth() + 1;
var dName = now.getDay() + 1;
var dayNr = now.getDate();
var yearNr=now.getYear();
if(dName==1) Day = "domingo";
if(dName==2) Day = "segunda";
if(dName==3) Day = "terça";
if(dName==4) Day = "quarta";
if(dName==5) Day = "quinta";
if(dName==6) Day = "sexta";
if(dName==7) Day = "sábado";
if(yearNr < 2000) Year = 1900 + yearNr;
else Year = yearNr;
// String to display current date.
var todaysDate =(" " + Day + ", " + dayNr + "/" + mName + "/" + Year);

function abre(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

  function mOvr(src,clrOver) {
    if (!src.contains(event.fromElement)) {
	  src.style.cursor = 'hand';
	  src.bgColor = clrOver;
   //  src.style.borderColor = 'Red';
	}
  }
  function mOut(src,clrIn) {
	if (!src.contains(event.toElement)) {
	  src.style.cursor = 'default';
	  src.bgColor = clrIn;
      //src.style.borderColor = clrIn;
	}
  }
  function mClk(src) {
    if(event.srcElement.tagName=='TD'){
	  src.children.tags('A')[0].click();
    }
  }



function picwin(janela,titulo,foto,legTit,legTex,barras,w,h) {
var body,features;
var resize;
body = "bgcolor=White text=Black leftmargin=0 topmargin=0";
if (legTex != '')
	barras='yes';

if (janela == 'fotoeq')
    resize = 'yes';
else 
   resize = 'no';
	
features="toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=" + barras + ",resizable=" + resize + ",top=0,left=0,width=" + w + ", height=" + h;

navwin=window.open("",janela,features);

navwin.opener.name="mainwin";
navwin.document.open();
navwin.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">');
navwin.document.write('<HTML>');
navwin.document.write('<HEAD>');
navwin.document.write("<TITLE>" +  titulo + "</TITLE>");
navwin.document.write('<link rel="stylesheet" type="text/css" href="webvi.css">');
navwin.document.write('</HEAD>');
navwin.document.write("<BODY "+ body + ">");
navwin.document.write("<table width=98% border=0 cellspacing=0 cellpadding=4 align=center>");
navwin.document.write('<tr><td><img src="logopic.gif"></td></tr>');
navwin.document.write("<tr><td align=center><img src=" + foto +  "></td></tr><tr><td class=titulo>" +  legTit  + "</td>");
navwin.document.write('</tr><tr><td class=texto>' + legTex + '</td></tr>');
navwin.document.write('<tr><td align="right"><a href="javascript:window.close()" class="a2">(fechar)</a></td></tr></table>');
navwin.document.write('</BODY>');
navwin.document.write('</HTML>');
}

	

function printpage() {
window.print();  
}


	// -->

