//Popup Javascript code that can be included in any File that requires the use of a popup

function popUp(URL, ntitle, parameters) {
	var this_window = window.open(URL, ntitle, parameters);
	this_window.focus();
}