<!--
function openW(myUrl,myW,myH) {
 if (window.navigator.appName == "Opera") {
  var w = parseInt(myW) + 12;
  var h = parseInt(myH) + 30;
  myWin=open(myUrl,'fotogalerie',
    "width="+w+",height="+h+",status=0,toolbar=0,menubar=0,resizable=1,screenX=45,screenY=45");
  myWin.focus();
 } else {
  var w = parseInt(myW) + 50;
  var h = parseInt(myH) + 95;
  myWin=open("", "fotogalerie", 
    "width="+w+",height="+h+",status=0,toolbar=0,menubar=0,resizable=1,screenX=45,screenY=45");
  myWin.focus();
  myWin.document.open();
  myWin.document.writeln("<html>");
  myWin.document.writeln("<head><title>Fotogalerie. Kirgistan.</title></head>");
  myWin.document.writeln("<body bgcolor=\"#000000\" text=\"#c0c0c0\">");
  myWin.document.write  ("<center><img src=\"",myUrl,"\"");
  myWin.document.writeln(" width=\"",myW,"\" height=\"",myH,"\" alt=\"\">");
  myWin.document.writeln("<p><form>");
  myWin.document.writeln("<input type=button value=\" Close \" onClick=\"javascript:window.close()\">");
  myWin.document.writeln("</form></p></center>");
  myWin.document.writeln("</body>");
  myWin.document.writeln("</html>");
  myWin.document.close();  
 }
}
window.navigator.appName 
//-->
