function sizer() {
if (navigator.appVersion.indexOf("AOL")>0){
} else {

	ubsr = navigator.appName.indexOf("etscape")
	usys = navigator.appVersion.indexOf('Win')
	
	iheight = document.photo.height;
	iwidth = document.photo.width;
	//alert("width: "+iwidth+"; height: "+iheight+";");

	if (ubsr>0) {
		iwidth = iwidth+60;
		iheight = iheight+80
	} else {
		iwidth = iwidth+60;
		iheight = iheight+80
	}
	window.resizeTo(iwidth, iheight);
	window.focus();
	
	if (screen.width) {
		xmove = (screen.width - iwidth)/2
		ymove = (screen.height - iheight)/2
		window.moveTo(xmove,ymove);
	}
}
}
