function MM_openBrWindow(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
  window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}

function AbreAlbum(Cod) { 
  	window.open("../album/index.php?cod="+Cod,"SaquaOnline","left=100,top=100,width=750,height=530");
}
function Data(){
	var now = new Date();
	var mName = new Array("janeiro", "fevereiro", "março", "abril", "maio",	"junho", "julho", "agosto", "setembro", "outubro", "novembro", "dezembro");
	var dayNr = now.getDate();
	var yearNr = now.getYear();
	yearNr = 2000 + ( yearNr % 100 )
	if (dayNr < 10) { dayNr = "0" + dayNr }
	document.write(dayNr + " de " + mName[now.getMonth()] + " de " + yearNr)
}