function viewPicture(the_picture, width, height)
{

var xpos = 0;

   if (self.screen.width)
   {
   xpos = (self.screen.width / 2) - (width / 2);
   }

var the_window = window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,scrollbars=no,left=' + xpos + ',top=100,screenX=' + xpos + ',screenY=100,width=' + width + ',height=' + height);

the_window.document.write('<html>\n<head>\n<title>LTU</title>\n</head>\n<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>\n\n');
the_window.document.write('<img src=' + the_picture + ' width=' + width + ' height=' + height + ' />\n\n');
the_window.document.write('</body>\n</html>');

}