function issueMsg(msgName) {	
  var url = "/index.php?app=msgSet&amp;relm=local&msg=" + msgName + "&return='" + window.location.href + "'";
  
	try {
   		xhr = new ActiveXObject("Microsoft.XMLHTTP");
	}
	catch(e) 
	{
  		xhr = new XMLHttpRequest();

	}


	function callMsg() {
		if(xhr.readyState==4) {
			window.location = self.location;
		}
	}
	
	xhr.onreadystatechange=callMsg;
	xhr.open("GET", url,  true); 
	xhr.send(null); 

}
