
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>WNP MAPS</title> </head> <body bgcolor='#FFFFFF' text='#000000'leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%' align='center'><div align='center'><img src='" + photo + "'> <p><a href='javascript:window.close()'><img src='images/closewin.gif' width='96' height='12' align='center' border='0'></a></div> </table> </body> </html>")
pictureWindow.document.close
}
