function show_photo(photo, width, height){
        var w = window.open('about:blank', '1', config='top=50,left=50,height='+height+', width='+width+', status=0, titlebar=0, menubar=0, resize=0, scrollbars=0');
        w.document.open();
        w.document.write('<html><head><title>Ôîòî</title></head>');
        w.document.write('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0"><a href=# onclick=\"self.close();\">');
        w.document.write('<img border=1 style="border-color:#6882A8" src="'+photo+'"></a></body></html>');
        w.document.close();
}

function show_text(title, text){
        var w = window.open('about:blank', '1', config='top=150, left=450, height=500, width=360, status=0, titlebar=0, menubar=0, resize=0, scrollbars=1');
        w.document.open();
        w.document.write('<html><head><title>'+title+'</title></head><style type=\"text/css\" media=\"screen\">@import \"/css/mobile.css\";</style>');
        w.document.write('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0">'+text+'</body></html>');
        w.document.close();
}
