// JavaScript Document
function popup(name, pWidth, pHeight) 
{	
window.open(name, 'Photo', "toolbar=no, menubar=no ,location=no, scrollbars=no, resizable=no, width="+pWidth+", height="+pHeight+", top=" + ((screen.height - pHeight)/2) + ", left=" + ((screen.width - pWidth)/2) + "\"");
}