function PopupWindowNOPTZ(PathAndParams){//ViewPage 
         var WindowTitle= "Window" + new String(Math.random()).substring(2);
		window.open(PathAndParams,WindowTitle,'resizable,Width=600,Height=402,top=120,left=120,toolbar=no');
	}
	function PopupWindowWithPTZ(PathAndParams){//ViewPage 
        var WindowTitle= "Window" + new String(Math.random()).substring(2);
		window.open(PathAndParams,WindowTitle,'resizable,Width=800,Height=402,top=120,left=120,toolbar=no');
	}
