function detailWin(img)
{
  foto1= new Image();
  foto1.src=(img);
  Control(img);
}

function Control(img)
{
  if((foto1.width!=0)&&(foto1.height!=0))
  {
    viewFoto(img);
  }
  else
  {
    blank="Control('"+img+"')";
    interval=setTimeout(blank,20);
  }
}

function viewFoto(img)
{
  day = new Date();
  id = day.getTime();
  width=foto1.width+20;
  height=foto1.height+25;
  string="width="+width+",height="+height;
  newWin = window.open('', id, string);
  newWin.document.writeln('<HTML><HEAD><TITLE>Medford Cruise<\/TITLE><\/HEAD><BODY BGCOLOR="#FFFFFF">');
  newWin.document.writeln('<A HREF="javascript:window.close\(\)\;"><IMG SRC="' + img +'"BORDER="0" ALT=""><\/A>');
  //newWin.document.writeln('<FORM><INPUT TYPE="button" onClick="window.close\(\)\;" VALUE="Close Window"><\/FORM>');
  newWin.document.writeln('<\/FONT><\/DIV><\/BODY><\/HTML>');
  newWin.document.close();
  //finish=window.open(img,"",string);
}
