
	showMashUp=function(getURL, destinationId){ 
		var xmlHttp=null;
		try{
			xmlHttp=new XMLHttpRequest();
		}
		catch (e){
			try{
				xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
			}
			catch (e){
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			}
		}
		if (xmlHttp==null){
			return;
		}
		xmlHttp.destinationId=destinationId;
		xmlHttp.onreadystatechange=function(){
			if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){ 
				document.getElementById(xmlHttp.destinationId).innerHTML=xmlHttp.responseText; 
			} 	
		}
		xmlHttp.open("GET", getURL, true);
		xmlHttp.send(null);
	}


	
