function centWin(w,h) {
x=(screen.availWidth-w)/2; y=(screen.availHeight-h)/2;
aWindow.moveTo(x,y);
}

function openPop(url,w,h) {
aWindow=window.open(url,"thewindow","WIDTH="+w+",HEIGHT="+h);
centWin(w,h);
}

function openImg(pic,w,h) {
aWindow=window.open("","thewindow","menubar=0,scrollbars=0,WIDTH="+w+",HEIGHT="+(h+8));
aWindow.document.write('<TITLE>'+pic+'</TITLE><BODY MARGINWIDTH=0 LEFTMARGIN=0 MARGINHEIGHT=0 TOPMARGIN=0 BGCOLOR=#000000 onBlur=window.close()>');
aWindow.document.write('<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH='+w+' HEIGHT='+(h-32)+'><TR><TD><IMG SRC=../images/'+pic+' WIDTH='+w+' HEIGHT='+(h-32)+' BORDER=0></TD></TR></TABLE>');
aWindow.document.write('<CENTER><FORM><INPUT TYPE="BUTTON" VALUE="Close Window"'+ ' onClick="window.close()"></FORM></CENTER></BODY>');
aWindow.document.close();
centWin(w,h);
}