function wPop(base, image, wd, ht, title, name, desc)
 {
  var OpenWindow=window.open("", "newwin", "toolbar=0,scrollbars=1,location=0,directories=0,status=0,menubar=0,resizable=1,width=" + wd + ",height=" + ht);
  OpenWindow.document.writeln("<HTML>");
  OpenWindow.document.writeln("<TITLE>" + title + "<\/TITLE>");
  OpenWindow.document.writeln("<META http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">");
  OpenWindow.document.writeln("<LINK rel=stylesheet href='" + base + "wrap.css' type='text/css'>");
  OpenWindow.document.writeln("<\/HEAD><BODY style='margin:0;padding:5px'>");
  OpenWindow.document.writeln("<H1>" + name + "<\/H1>");
  OpenWindow.document.write("<A href='#' onClick='self.close()'><IMG src='" + base + image + "' alt='" + name + "'><\/A>");
  if(desc.length>0)
   {
    for(i=0;i<desc.length;i++) { OpenWindow.document.writeln("<P>" + desc[i] + "<\/P>"); }
//   } else {
//    OpenWindow.document.write("<A href='#' onClick='self.close()'><H2>= ÇÀÊÐÛÒÜ ÎÊÍÎ =<\/H2><\/A>");
   }
  OpenWindow.document.write("<\/BODY><\/HTML>");
  OpenWindow.document.close();
 }


