var hostPath = "http://localhost:54383/COTM/includes/";
if ( document.URL.indexOf("localhost") < 0 )
    hostPath = "http://webpages.charter.net/jkeithley21/cotm/includes/";




function XMLHttpRequestLoad(pageName) {
 var oRequest = new XMLHttpRequest();
 var sURL  = hostPath + pageName;

 oRequest.open("GET",sURL,false);
 oRequest.setRequestHeader("User-Agent",navigator.userAgent);
 oRequest.send(null)

 if (oRequest.status==200) return oRequest.responseText;
 return "";
 
 }

function LoadPage( pageName )
{
    //document.getElementById('contentLeft').innerHTML = XMLHttpRequestLoad( 'left.' + pageName);
    document.getElementById('contentLeft').innerHTML = XMLHttpRequestLoad( 'left.home.inc');
    document.getElementById('contentRight').innerHTML = XMLHttpRequestLoad(pageName);

}