//-------------------------------------------------------------------------------- function rate_pic(r_id, r_type) { // disable the button and show the loading document.getElementById('rate_table').innerHTML = ""; var xmlHttp; // Create xmlHttp Object try { // Firefox, Opera 8.0+, Safari xmlHttp = new XMLHttpRequest(); } catch (e) { try { // Internet Explorer xmlHttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { alert("Your browser does not support AJAX!"); return false; } } } // Event Handler - EventListener xmlHttp.onreadystatechange = function() { if (xmlHttp.readyState == 4) // 4: The Request is complete { var result = xmlHttp.responseText; // Response document.getElementById('rate_table').style.display = "none"; document.getElementById('thanks_for_rating').style.display = "block"; } } // Request xmlHttp.open("GET", "/rate.php?r_id="+r_id+"&r_type="+r_type, true); xmlHttp.send(null); } //--------------------------------------------------------------------------------