// JavaScript Document

	function ow(w, h, url) {
		l = Math.round( (screen.width/2) - (w/2) );
		t = Math.round( (screen.height/2) - (h/2) );
		window.open( url ,'nxwindow'
				   , 'width='+w+',height='+h+',top='+t+',left='+l
					   + ',directories=no,location=no,menubar=no'
					   + ',resizable=yes,scrollbars=1,status=no,toolbar=no');
	}
	