function window_open(title,href,target,width,height) {
    if(width=='') width='500';
    if(height=='') height='500';
    width=parseInt(width,10);
    height=parseInt(height,10);
    var wind_img=window.open('',target,'width='+(height>500?width+16:width)+',height='+(height>500?500:height)+(height>500?',scrollbars=yes':'')+',resizable=yes');
    wind_img.focus();
    wind_img.document.open();
    wind_img.document.write('<html><head><META http-equiv="Content-Type" content="text/html; charset=windows-1251">'+(title?'<title>'+title+'</title>':'')+'</head>');
    wind_img.document.write('<body leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginwidth="0" marginheight="0"><img src="'+href+'" border="0" width="'+width+'" height="'+height+'" title="'+title+'" alt="'+title+'">');
    wind_img.document.write('</body></html>');
    wind_img.document.close();
    return false;
}