<!-- //
function openWindow (titles, pic, w, h) {html_code = "<html><title>"+titles+"</title><META http-equiv='Content-Type' content='text/html; charset=windows-1251'><body bgcolor='#FFFFFF' topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'><img src='"+pic+"' width='"+w+"' height='"+h+"'></body></html>"
win = window.open ("", "", "width="+w+", height="+h+" ");
win.document.open ();
win.document.writeln (html_code);
win.document.close ();
}
//-->

