function openUp(what) {
	var url = null;
	var width = "550";
	var height = "650";
	var left = "50";
	var top = "50";
	
	url = "/" + what;
	params = "toolbar=no,status=no,menubar=no,location=no,alwaysRaised=yes," + 
			 "scrollbars=nos,width=" + width + ",height=" + height + ",resizable=yes," +
			 "left=" + left + ",top=" + top;
	something = window.open(url, "_pictures", params);
	something.focus();
	something.resizeTo(width, height);
}


