var title="Цивилизация - увеличенное фото";
var bgcolor="ffffff";
var window_name="picture_civilization";
var window_handle;
var picture_filename;
var width=600;
var height=400;
var scrollbars='no';

function openthumb (user_picture_filename, userwidth, userheight) {
picture_filename=user_picture_filename;
if (userwidth>0){width=userwidth;};
if (userheight>0){height=userheight;};
window_handle = window.open("",window_name,"menubar=no,directories=no,location=no,resizable=no,scrollbars=no,width=1,height=1,left="+(screen.width+200)+",top="+(screen.height+200));
window_handle.document.open();
window_handle.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"><meta http-equiv="Content-Language" content="ru"><title></title></head><body bgcolor=#'+bgcolor+' topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0 marginwidth=0 marginheight=0><table border=0 cellpadding=0 cellspacing=0 width=100% height=100%><tr><td align=center valign=middle><img src="'+picture_filename+'" alt="" border=0 name=thumb_image></td></tr></table></body></html>');
window_handle.document.close();
nomertaimera=setTimeout('openthumb2()',1000);
}


function openthumb2() {
testwidth=window_handle.document.thumb_image.width;
testheight=window_handle.document.thumb_image.height;
if (testwidth>40){width=testwidth;};
if (testheight>40){height=testheight;};
if (width>screen.width){width=screen.width;height+=24;scrollbars='yes';};
if (height>screen.height-32){height=screen.height-56;width+=24;scrollbars='yes';
 if (width>screen.width){width=screen.width;};
};

window_handle.close();
nomertaimera2=setTimeout('openthumb3()',500);
}


function openthumb3() {
var window_handle = window.open("",window_name, "menubar=no,directories=no,location=no,resizable=no,scrollbars="+scrollbars+",width="+width +",height="+height+",left="+((screen.width-width)/2)+",top="+((screen.height-height-56)/2));
window_handle.document.open();
window_handle.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"><meta http-equiv="Content-Language" content="ru"><title>'+title+'</title></head><body bgcolor="#'+bgcolor+'" topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0 marginwidth=0 marginheight=0><table border=0 cellpadding=0 cellspacing=0 width=100% height=100%><tr><td align=center valign=middle><img src="'+picture_filename+'" alt="" border=0 name=thumb_image></td></tr></table></body></html>');
window_handle.document.close();
}