function getData(myPage) {
        if (window.XMLHttpRequest) { // Mozilla, Safari, ...
            req = new XMLHttpRequest();
        } else if (window.ActiveXObject) { // IE
            req = new ActiveXObject("Microsoft.XMLHTTP");
        }
        req.open('GET',myPage, false);
        req.send(null);

        if (req.readyState==4) {
                if(req.status==200) {
                        return req.responseText;
                } else {
                        alert('There was a problem with the request.');
                }
        }
}
//End getData();
