//PHOTO IN NEW WINDOW SCRIPT
var titlename
var windowwidth
var windowheight

function open_new_windowFF() 
{
new_window = open("","displayWindow","width=100,height=100,left=0,top=0");


new_window.document.open();


new_window.document.write('<html><title>Image</title>');
new_window.document.write('<body background=');
new_window.document.write(titlename);
new_window.document.write('>');
new_window.document.write('</body></html>');
new_window.resizeTo(windowwidth, windowheight);

new_window.document.close(); 
}
