var photowin=null;
onerror = null

//###############################################
function openphoto(gotoURL,myname)
//###############################################

{
 //** change these 3 values
 h=380
 w=520
 toolbarheight=0   	
 LeftPosition=(screen.width)?(screen.width - w)/2:100;
 TopPosition=(screen.height)?(screen.height - h - toolbarheight)/2:100;

 //** change window settings
 settings='width='+ w + ',height='+ h + ',top=' + TopPosition + ',left=' + LeftPosition +   ',location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no,dependent=no';
 photowin=window.open('',myname,settings);

 photowin.location=gotoURL;
 photowin.focus();
}


//end function 
//^^^^^^^^^^^^
