function makePictureWindow( theURL, theWidth, theHeight ) {
count = (new Date()).getTime();
picSize = "resizable=no,status=no,menubar=no,scrollbars=no,width=" + theWidth + ",height=" + theHeight;
theNewWindow = window.open( theURL, "pictureWindow"+count, picSize); 

}
