function AbreFoto(img,largura,altura) {
posx = (screen.width/2)-(largura/2)
posy = (screen.height/2)-(altura/2)
newin = window.open("","Skimoni","scrollbars=0, width=" + largura + ", height=" + altura + ", top=" + posy + ", left=" + posx)
var arquivo = ""+ 
"<html>" +
"<head>" +
"<title>Skimoni</title>" +
"</head>" +
"<body topmargin='0' leftmargin='0'>"+
"<table border='0' cellspacing='0' cellpadding='0'>"+
"<tr>"+
"<td align='center' valign='middle'><img src='imgs/fipan2009/" + img + ".jpg'></td>"+
"</tr>"+
"</table>"+
"</body>"+
"</html>"
newin.document.open()
newin.document.write(arquivo)
newin.document.close()
newin.focus()
}

function AmpliaImg(img,largura,altura) {
posx = (screen.width/2)-(largura/2)
posy = (screen.height/2)-(altura/2)
newin = window.open("","Skimoni","scrollbars=0, width=" + largura + ", height=" + altura + ", top=" + posy + ", left=" + posx)
var arquivo = ""+ 
"<html>" +
"<head>" +
"<title>Skimoni</title>" +
"</head>" +
"<body topmargin='0' leftmargin='0'>"+
"<table border='0' cellspacing='0' cellpadding='0'>"+
"<tr>"+
"<td align='center' valign='middle'><img src='imgs/" + img + ".jpg'></td>"+
"</tr>"+
"</table>"+
"</body>"+
"</html>"
newin.document.open()
newin.document.write(arquivo)
newin.document.close()
newin.focus()
}