function popUp(URL) {
    var myWindow = window.open(URL, "myWindow", 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,left=25,top=25,height=400,width=400');
    myWindow.focus();
	}