function image_open(href,target,width,height,title) {
	var w1=window.open('',target,'width='+(width+4)+',height='+(height+4)+',scrolling=no,resizable=yes');
	w1.focus();
	var d1=w1.document;
	d1.open();
	d1.write('<html><head><META http-equiv="Content-Type" content="text/html; charset=windows-1251">'+(title?'<title>'+title+'</title>':'')+'<link rel="Stylesheet" href="/style.css" type="text/css"></head>');
    d1.write('<body leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginwidth="0" marginheight="0"><table width="100%" cellspacing="0" cellpadding="0" border="0" height="100%"><tr><td align="center" colspan="2"><img src="'+href+'" border="0" ></td></tr></table>');
    d1.write('</body></html>');
    d1.close();
    return false;
}
