// JavaScript Document

var window_features ="location=0,statusbar=0,menubar=0,width=500,height=600,scrollbars=yes";
		
		function newPopUp(url) {
		
			var theWindow = window.open(url, "myWindow", window_features);
			theWindow.focus();
			return theWindow;
			
		}