var newWindow;

function launchWindow(URL, name, features) {
	newWindow = window.open(URL, name, features);
	newWindow.focus();
}
