// JavaScript Document
function sub_win(pic_url,pic_width,pic_height,pic_scroll){
if (pic_scroll == null) { pic_scroll = 0; }
var params='toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+pic_scroll+',resizable=0,copyhistory=0,height='+pic_height+',width='+pic_width;
foto=window.open('','',params);
foto.document.write('<html><head><title>Click в любом месте окна  его закроет</title></head><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0"><table height="100%" width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td align="center" valign="center"><img src=',pic_url,' onclick=window.close();opener.focus()></td></tr></table></body></html>');
foto.focus();
}
