
function newPhotoWindow(winWidth,winHeight,photo) {
pictureWindow = window.open('','picWin','toolbar=no,location=no,scrollbars=no,status=no,menubar=no,resizable=no,width=' + winWidth + ',height=' + winHeight + "'")
pictureWindow.document.write ("<html> <head> <title>Jan Dorer Giclees</title> </head> <body bgcolor='#FFFFFF' text='#000000'><table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%' align='center'>  <div align='center'><img src='" + photo + "'> <br><a href='javascript:window.close()'><img src='images/closewin_whtbg.gif' width='73' height='13' align='center' border='0'></a></div> </table> </body> </html>")
pictureWindow.document.close
}