novaJanela = null
function imgCenter(nomeArquivo, nomeZip, larg, alt){
Swidth = screen.width
Sheight = screen.height
Wleft = Math.floor((Swidth / 2) - (larg / 2) - 8)
Wtop = Math.floor((Sheight / 2) - (alt / 2) - 20)
alt2 = eval(alt+22);
larg2 = eval(larg+22);
novaJanela = window.open("", "", "width="+larg2+",height="+alt2+",left="+Wleft+",top="+Wtop)
novaJanela.document.write("<html><head><title>Monobloco<\/title><\/head><body style='margin:10px;background-color:#FFFFFF;'><a href='"+nomeZip+"'><img src='"+nomeArquivo+"' width='"+larg+"' height='"+alt+"' border='0' \/><\/a><\/body><\/html>")

}
function popupCenter(url, Wwidth, Wheight) {
	Swidth = screen.width;
	Sheight = screen.height;
	name = "popup";

	Wleft = Math.floor((Swidth / 2) - (Wwidth / 2) - 8);
	Wtop = Math.floor((Sheight / 2) - (Wheight / 2) - 20);

	params = "left="+Wleft+",top="+Wtop+",width="+Wwidth+",height="+Wheight;

	window.open(url, name, params);
}