var newWindow;
function openWin(url, w, h, caption) {
if( newWindow && !newWindow.closed ) {
newWindow.close();
}
newWindow = window.open(url, 'newWin', 'width='+ w +', height=' + h +', scrollbars=no, resizable=no, toolbars=no, location=no, directories=no, status=no, menubar=no, copyhistory=no');
newWindow.document.write("<html><head><title>&nbsp;</title><style type='text/css'>body{margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;background:url(images/bitf_bg_tile.jpg);}input.closebutton{font-size:10px;color:#888888;background-color:#222222;border-style:inset;border-color:#444444;border-width:1px;}</style></head><body><center><table width='100%' border='0'><tr valign='top'><td align='center'><img style='border:1px;border-color:#000000;border-style:solid;' src=" + url + " border='0'></td></tr><tr valign='top'><td align='center'><p style='font-family:arial,verdana,sans-seriff;color=#ffffff;font-size:10px;'>" + caption + "</p></td></tr><tr valign='top'><td align='center'><input type='button' class='closebutton' value='Close' onClick='javascript:window.close();'></input></tr></td></table></body></html>");
newWindow.document.close();
newWindow.focus();
}
