var photowin=null;
onerror = null

//###############################################
function openphoto2(gotoURL,myname,w,h,t)
//###############################################

{
 borderwidth=20
 w -=0
 h -=0
 w=w+borderwidth
 h=h+borderwidth
 toolbarheight=t  	
 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.focus();
 photowin.location=gotoURL;
}


//end function 
//^^^^^^^^^^^^