function popItUp(pIndex,Kor) {
 popUpWin = window.open('screenshot.htm?img=shots/'+eval("F" + pIndex)+'&caption='+eval("L" + pIndex)+'&cor='+Kor,
            'popJWin','resizable=yes,scrollbars=no,menubar=no,width=535,height=420,left=5,screenX=5,top=5,screenY=5'); // pic is 500 x 375
 popUpWin.resizeTo(535+12,420+38)
 popUpWin.focus();
 return false; }

function Wpic(Pindex) {
 //Cor=1;
 if (window.document.bgColor == "#99ccff") Cor=1; // azul
 if (window.document.bgColor == "#b4c85a") Cor=2; // verde
 if (window.document.bgColor == "#e9967a") Cor=3; // salmao
 if (window.document.bgColor == "#dcdcdc") Cor=4; // cinza
 if (window.document.bgColor == "#000000") Cor=5; // preto
 avHTM  = '<a href="JavaScript:void(0);" onclick="return popItUp(' + eval(Pindex) + ',' + Cor + ');" target="popJWin">';
 avHTM += '<img border="1" src="thumbs/_' + eval("F" + Pindex) + '" align="right" hspace="5" vspace="3" width="180" height="135" Alt="Click me"></a>';
 document.write(avHTM); }

function closer() {
if(typeof(popUpWin) != "undefined") popUpWin.close(); //http://www.fusionauthority.com/Article.cfm?ArticleID=2193
 }

window.onunload= closer;
