count=0;
function OpenImg(name, title, w, h)
{
  t="";
  if(h!=0) t += ",height=" + h;
  if(w!=0) t += ",width=" + w;
  if(h!=0 || w!=0){
    t += ",resizable=no";
  }else{
    t += ",resizable=yes";
  }

  wname=name.replace(/\./g,"").replace(/\//g,"");
  win=open(
    "img.html#?url=" + name.replace(/\//g,",")+";title="+title+";",
    wname + count++,
    "menubar=no,scrollbars=no,status=no" + t);
}


