//#
function open_html(gotoURL,myname)
{
//** vars
height=500
width=600
toolbarheight=0
//** change 2 below for browser specific mods
heightMod=0
widthMod=0
  
h=height+heightMod
w=width+widthMod

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=yes,resizable=no,dependent=no';
photowin=window.open(gotoURL,myname,settings);

if (navigator.appName=="Netscape"|| navigator.appName=="Microsoft Internet Explorer")
{return;} 
else
{window.onerror = blockError;dummy();photowin.location=gotoURL;photowin.focus();return;}

}

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

function blockError(){return true;}
