<!--

function windowopen (url, w, h)
{
nn4 = (document.layers)? true : false;
ie4 = (document.all)? true : false;
posX = Math.round((screen.width - w) / 2);
posY = Math.round((screen.height - h) / 2);
//widthGif+=20;
//heightGif+=20;
poscode = (nn4)? "screenX="+posX+",screenY="+posY : "left="+posX+",top="+posY;
window.open(url, "photoWindow", "status=yes,width="+w+",height="+h+","+poscode);
}

function windowopen_scroll (url, w, h)
{
nn4 = (document.layers)? true : false;
ie4 = (document.all)? true : false;
posX = Math.round((screen.width - w) / 2);
posY = Math.round((screen.height - h) / 2);
//widthGif+=20;
//heightGif+=20;
poscode = (nn4)? "screenX="+posX+",screenY="+posY : "left="+posX+",top="+posY;
window.open(url, "photoWindow", "status=yes,scrollbars=yes,width="+w+",height="+h+","+poscode);
}

//-->
