var title_img="Energolight";
var bgcolor_img="ffffff";
var window_name_img="img_energolight";
var window_handle_img;
var filename_img;
var title_img;
var width_img_auto=600;
var height_img_auto=400;
var scrollbars_img_auto='no';
var window_is_open=false;

function open_img_window (user_filename_img, userwidth_img, userheight_img, userscrollbars_img,usertitle_img) {
filename_img=user_filename_img;
width_img=width_img_auto;
height_img=height_img_auto;
scrollbars_img=scrollbars_img_auto;
resize_img_auto=1;
if (usertitle_img>''){}else{usertitle_img='';}
if ((userwidth_img>40)&(userheight_img>40)){
 width_img=userwidth_img;
 height_img=userheight_img;
 resize_img_auto=0;
 }

if (userscrollbars_img>''){scrollbars_img=userscrollbars_img;};
window_handle_img = window.open("",window_name_img, "menubar=no,directories=no,location=no,resizable=no,scrollbars="+scrollbars_img+",width="+width_img +",height="+height_img+",left="+((screen.width-width_img)/2)+",top="+((screen.height-height_img-56)/2));
window_handle_img.document.open();
window_handle_img.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"><meta http-equiv="Content-Language" content="ru"><title>'+usertitle_img+' '+title_img+'</title><link rel="stylesheet" type="text/css" href="main.css"><script language="JavaScript">var resize_img_auto='+resize_img_auto+';function resizewindow(){/*window.document.title=window.document.img.width+\' \'+window.document.img.height;*/self.resizeTo((window.document.img.width+10),(window.document.img.height+48));self.moveTo((screen.width-window.document.img.width-10)/2,(screen.height-window.document.img.height-68)/2);}</script></head><body bgcolor="#'+bgcolor_img+'" topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0 marginwidth=0 marginheight=0  onload="if (resize_img_auto==1){self.resizeTo((window.document.img.width+10),(window.document.img.height+48));self.moveTo((screen.width-window.document.img.width-10)/2,(screen.height-window.document.img.height-68)/2);openwnd=setTimeout(\'resizewindow();\',500);}else{self.resizeTo(('+width_img+'+10),('+height_img+'+48));self.moveTo((screen.width-'+width_img+'-10)/2,(screen.height-'+height_img+'-68)/2);}"><table width=1000 height=768 border=0 cellpadding=0 cellspacing=0 width=100% height=100%><tr><td align=left valign=top><a href="JavaScript:window.close();" title="Закрыть окно"><img src="'+filename_img+'" alt="Закрыть окно" border=0 name=img></a><!--br>'+usertitle_img+'<br--></td></tr></table></body></html>');
window_handle_img.document.close();
window_handle_img.focus();
window_is_open=true;
}