function ajaxFunction(id){
    var xmlHttp;
    try {
        // Firefox, Opera 8.0+, Safari
        xmlHttp = new XMLHttpRequest();
    } 
    catch (e) {
        // Internet Explorer
        try {
            xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
        } 
        catch (e) {
            try {
                xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
            } 
            catch (e) {
                alert("Your browser does not support AJAX!");
                return false;
            }
        }
    }
    xmlHttp.onreadystatechange = function(){
        if (xmlHttp.readyState == 3) {
            //document.getElementById('movieinfo').innerHTML='<div align="center"><img src="http://www.sanbaldo.com/wordpress/wp-content/bigrotation2.gif" alt=""></div>';
            document.getElementById('movieinfo').innerHTML = '<div align="center" style="min-height:1000px;">Loading movie information, please wait...</div>';
        }
        if (xmlHttp.readyState == 4) {
            document.getElementById('movieinfo').innerHTML = xmlHttp.responseText;
        }
    }
    xmlHttp.open("GET", "ajaxinfo.php?id=" + id, true);
    xmlHttp.send(null);
}

