var xmlhttp = false;
        try {
            xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
        } catch (e) {
            try {
                xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
            } catch (E) {
                xmlhttp = false;
            }
        }

        if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
            xmlhttp = new XMLHttpRequest();
        }

function PlaceCalendarInfo(Target) {
    /*Define the file path*/
//    var Member = '../../test/' + Target;
    xmlhttp.open("GET", Target, true);
    xmlhttp.onreadystatechange = function() {
        if (xmlhttp.readyState == 4) {
            
            var CalendarHtmlCode = xmlhttp.responseText; /*getting the source code of the Target*/
            var startPos = CalendarHtmlCode.indexOf('<!--calendar start-->'); /*start position of the reqired element*/
            var endPos = CalendarHtmlCode.indexOf('<!--calendar end-->'); /*end position of the reqired element*/
            CalendarHtmlCode = CalendarHtmlCode.substring(startPos, endPos); /*source to include*/

            if (isIE || isNN) whichDog.style.visibility = "visible"; else if (isN4) document.whichDog.visibility = "show";
            document.getElementById('PersonCalendarDetails').innerHTML = CalendarHtmlCode;
            whichDog.style.display = 'block';
        }
    };
    xmlhttp.send(null);
    }

