// JavaScript Document

function popUp(URL) {
	newwindow = window.open(URL, 'newwindow', 'toolbar=0, scrollbars=0, location=0, statusbar=0, menubar=0, resizable=0, width=480, height=500, left = 390, top = 200');
	if (window.focus) {newwindow.focus()}
}