// JavaScript Document

function popUp(URL, height, width, menubar) {
	window.open(URL, "none", "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=" + menubar + ",resizable=0,width=" + width + ",height=" + height + ",left = 200,top = 50");
}

