function pwindow (image_src, image_width, image_height, title_date, lang, i_date)
{
image_id = image_src.substring(0, image_src.indexOf(".", 0));
image_id = image_id.replace(/[^0-9a-zA-Z]/g, "_");

image_var = "<img src='"+ image_src + "' width='" + image_width + "' height='" + image_height + "' border='0'>";

image_height = image_height + 0;


var myWin, my_left;
my_left=(screen.width/2);

open_window_string = "myWin = open('', '"+
image_id
+"', 'width="+
(image_width+200)
+",height="+
(image_height+150)
+",directories=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=yes,toolbar=no,top=10,left=10');";

eval(open_window_string);

myWin.document.open();

myWin.document.write("<HTML>\n<HEAD>\n<TITLE>");
if (navigator.appName=="Microsoft Internet Explorer") {
myWin.document.write(title_date);
}
myWin.document.write("</TITLE>\n");
myWin.document.write("<META name='other.language' content='ukrainian,russian,english'>\n");
myWin.document.write("<META http-equiv='content-type' content='text/html; charset=windows-1251'>\n\n");
myWin.document.write("<!--<LINK href='/misc/style.css' rel='stylesheet' type='text/css'>-->\n");
myWin.document.write("</HEAD>\n");
myWin.document.write("<body onLoad='focus();' bgcolor='#FFFFFF' text='#333333' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>\n\n");

myWin.document.write(image_var);
myWin.document.write("<div style=\"background-color: #BEBCC5; margin: 7px 0px 5px 0px;\"><img src=\"/images/1px.gif\" width=\"1\" height=\"1\"/></div>\n");
myWin.document.write("<table width=\"100%\"  border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n");
myWin.document.write("<tr>\n");
myWin.document.write("<td valign=\"top\">\n");
myWin.document.write("<div style=\"padding: 10px;\">\n");
myWin.document.write("<span class=\"date\">"+i_date+"</span><br/>\n");
myWin.document.write("<div class=\"title2\" style=\"margin: 0px 0px 3px 0px;\"><span class=\"btext\">"+title_date+"</span></div>\n");
myWin.document.write("</div>\n");
myWin.document.write("</td>\n");
myWin.document.write("<td align=\"right\"><img src=\"/images/logo_photo_"+lang+".gif\" width=\"75\" height=\"62\"/></td>\n");
myWin.document.write("</tr>\n");
myWin.document.write("</table>\n");
myWin.document.write("</body>\n</html>\n");

myWin.document.close();
}



