novaJanela = null
function imgCenter(nomeArquivo, larg, alt){
Swidth = screen.width
Sheight = screen.height
Wleft = Math.floor((Swidth / 2) - (larg / 2) - 8)
//alt2 = eval(alt+22);
//alt2 = 200;
alt2 = Sheight - 120;
Wtop = Math.floor((Sheight / 2) - (alt2 / 2) - 20)
larg2 = eval(larg+50);
alt1 = eval(alt+50);
if (alt1<alt2){
novaJanela = window.open("", "", "resizable=1, scrollbars=1, width="+larg2+",height="+alt1+",left="+Wleft+",top="+Wtop)
}else{
novaJanela = window.open("", "", "resizable=1, scrollbars=1, width="+larg2+",height="+alt2+",left="+Wleft+",top="+Wtop)
}
novaJanela.document.write("<html><head><title>Sport Society<\/title><\/head><body style='margin:10px;background-color:#FFFFFF;'><table width=100% height=100%><tr><td valign=middle align=center><img src='"+nomeArquivo+"' width='"+larg+"' height='"+alt+"' border='0' \/></td></tr></table><\/body><\/html>")

}
