var col=0;
var image=new Array();
function open_img(adr,w,h)
  {
  if (col>0) {image[col-1].close();}
  image[col]=window.open('','tray','directories=0,height='+h+',location=0,menubar=0,status=0,toolbar=0,scrollbars=0,resizable=1,width='+w);
  image[col].document.open();
  image[col].document.write("<html><head><title>Laura Creavalle's Photos</title></head><body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0 bgcolor=#F8F8F8><center><img src="+adr+" border=0 width="+w+" height="+h+"></center></body></html>");
  image[col].focus();
  col=col+1;
  }

