<!--

function picWindow(pictureURL) {

  var newwindow = window.open("","myWin","toolbar=0,status=0,menubar=0,scrollbars=1,resizable=1");

  with (newwindow)
  {
    var contents="<HTML><HEAD><TITLE> " + pictureURL + " </TITLE></HEAD> \
    <BODY BGCOLOR='#FFFFFF' TEXT='#FFFFFF' LEFTMARGIN=0 TOPMARGIN=0> \
    <IMG SRC='" + pictureURL + "' onLoad='javascript:window.resizeTo(this.width+10,this.height+30);'> \
    </BODY></HTML>";
    document.open("text/html");
    document.write(contents);
    document.close();
  }
}

//-->

