var thumbname;
var width;
var height;
function openthumb (globalthumbname, globalwidth, globalheight) {
thumbname=globalthumbname;
width=globalwidth;
height=globalheight;
var thumbwindow = window.open("", "thumb_elenara", "menubar=no,directories=no,location=no,resizable=no,scrollbars=no,width="+width +",height="+height+",left="+((screen.width-width)/2)+",top="+((screen.height-height)/2));
thumbwindow.close();
nomertaimera=setTimeout('openthumb2 ()',1);
}

function openthumb2 () {
var thumbwindow = window.open("", "thumb_elenara", "menubar=no,directories=no,location=no,resizable=no,scrollbars=no,width="+width +",height="+height+",left="+((screen.width-width)/2)+",top="+((screen.height-height)/2));
thumbwindow.document.open();
thumbwindow.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=#E2CEC6 topmargin=0 leftmargin=0 rightmargin=0><table border=0 cellpadding=0 cellspacing=0 width=100% height=100%><tr><td align=center valign=middle><img src="'+thumbname+'" border=0></td></td></tr></table></body></html>');
thumbwindow.document.close();
}
