function popUpWindow(uri, width, height) {

	var properties = "width=" + width + ", height=" + height + ", status=no, toolbar=no, menubar=no, scrollbars=no, resizable=no";
	var newWin = window.open(uri, "popUpWin", properties);

	newWin.focus();
}
