function LaunchModule()
{
	
	var w = 800;
	var h = 600;
	
	// center in screen
	if (screen.width)
	{
   		w = screen.width;
   		h = screen.height;
	}

	var pW=300;
	var pH=431;

	var l = (w-pW)/2;
	var t = (h-pH)/2;
	
	
		
	
	var obj = window.open( "./src/vew_module.php", "nps_module", "status=0, toolbar=0, location=0, menubar=0, directories=0, resizable=0, scrollbars=0, width="+pW+", height="+pH+", left="+l+", top="+t);							
	obj.focus();
}

