var new_window;
var posX, posY;

function ShowDetail(f_addr_picture,f_width,f_height)
 {
  var subdir;
  var file_name;

  if (f_addr_picture.substr(9,2) == "st")
   {
    subdir = "images/rs/";
   }
  else
   { 
    subdir = "images/rs/";
   }  
   
  if (new_window != null)
   {
    new_window.close();
   } 
  new_window = window.open(subdir + f_addr_picture + ".html",'DetailPhoto','left=0,top=0,width=' + f_width + ',height=' + f_height + ',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0,titlebar=0');
  new_window.focus();
 }
