      function loadURL(URL,targetID) {
		  	
			function triggered() {
			  if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
				  document.getElementById(targetID).innerHTML = xmlhttp.responseText;
			  }
			} 
	  
			try {
			  xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e) {
			  alert('Sorry. The New York Philharmonic website is trying to load new content for you to see, but your browser is not allowing it.');
			}
			xmlhttp.onreadystatechange = triggered;
			xmlhttp.open("GET", URL);
			xmlhttp.send(null);
		}
	
