	var xmlHttpRight;
	try{
		 xmlHttpRight = new XMLHttpRequest();
	}catch(e){
		try{
			xmlHttpRight = new ActiveXObject("Microsoft.XMLHTTP");
		}catch(e){
			try{
				xmlHttpRight = new ActiveXObject("Msxml2.XMLHTTP");
			}catch(e2){
				xmlHttpRight=false;
			}
		}
	}
	
	
	function getRightList(sID){
			var sPath="js/searchsign.jsp?sPID="+sID;
			xmlHttpRight.open("POST",sPath,true);
            xmlHttpRight.onreadystatechange=showInfo;
			xmlHttpRight.send(null);
	}
	function showInfo(){
		if(xmlHttpRight.readyState==4 && xmlHttpRight.status==200){
			var sValue=xmlHttpRight.responseText;
			document.getElementById("tabRight").innerHTML=sValue;
		}
	}

	
