<!--//
/** Cornwall Map Page **/
function displayPageContent(sText) {
            var divpageContent = document.getElementById("mapDescLayer");
            divpageContent.innerHTML = sText;
}

function requestPageContents(pageID){
	var oXmlHttp = zXmlHttp.createRequest();
	oXmlHttp.open("get", "fetch_details.php?pID=" + pageID, true );
	oXmlHttp.onreadystatechange = function(){		
		if(oXmlHttp.readyState >= 3){				
			if(oXmlHttp.status==200){					
				displayPageContent(oXmlHttp.responseText);	
				
			} else {
				displayPageContent("An error occurred: " + oXmlHttp.statusText);					
			}		
		}	
	};
	oXmlHttp.send(null);
}
//-->