function votio_getHTTPObject() { var xmlhttp; /*@cc_on @if (@_jscript_version >= 5) try { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (E) { xmlhttp = false; } } @else xmlhttp = false; @end @*/ if (!xmlhttp && typeof XMLHttpRequest != "undefined") { try { xmlhttp = new XMLHttpRequest(); } catch (e) { xmlhttp = false; } } return xmlhttp; } var votio_http = votio_getHTTPObject(); function votio_handleHttpResponse() { if(votio_http.readyState == 4) { var s = votio_http.responseText; var res = s.split(","); var id = res[0]; var index = res[1]; var rating = eval(res[1]); var message = res[2]; var votediv = document.getElementById('ratingbox'); votediv.innerHTML = message; } } function voteCast(index, id) { var url = "http://www.web2null.de/wp-content/plugins/votio/votio.php?id=" + id + "&index=" + index; votio_http.open("GET", url, true); votio_http.onreadystatechange = votio_handleHttpResponse; votio_http.send(null); }