
function popUp(URI, popWidth, popHeight) {
	var heightWidth;
	heightWidth = 'width=' + popWidth + ', height=' + popHeight;
	
	var windowFeatures;
	windowFeatures = 'channelmode=no, status=0, resizable=1, scrollbars=1, titlebar=0, toolbar=0, location=0, statusbar=0, menubar=0';
	
	var topLeft;
	topLeft = 'left=0, top=0';
	
	var windowSpecs;
	windowSpecs = topLeft + ',' + heightWidth + ',' + windowFeatures;
	window.open(URI, null, windowSpecs, false);
}
