<!-- hide this script from old browsers
function show_photo(page,winName,w,h) {
var win=null;
centerWidth = (screen.width) ? (screen.width-w)/2 : 0;
centerHeight = (screen.height) ? (screen.height-h)/2 : 0;
config ='height='+h+',width='+w+',top='+centerHeight+',left='+centerWidth+',leftmargin="0",topmargin="0",marginwidth="0",marginheight="0"';
win = window.open(page,winName,config);
win.document.write('<BODY BGCOLOR=#000000>');
win.document.write('<center> <img src='+page+'> </center>');
win.document.close();
//if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();
}
 // done hiding from old browsers -->
