// Popout a new window with URL and size params
function launch(URL, width, height){
	var winLeft = (screen.width - width) / 2;
	var winUp = (screen.height - height) / 2;

	newWindow = window.open(URL,"newwindow","width="+width+",height="+height+",top="+winUp+",left="+winLeft+",scrollbars=auto,toolbar=no,menubar=no,status=no,resizable=no");
	newWindow.focus();
}