/*

A script to pop open an image into a window.

The file image.html contains javascript code that allows
auto resize to the size of the image

*/

function PopupPic(sPicURL) {
 window.open( "image.html?"+sPicURL, "details", "status='no',resizable=1,HEIGHT=200,WIDTH=200");
}
   

