function xmlhttpPost(strURL) { 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==4) { updatepage(xmlHttp.responseText); } } xmlHttp.open("GET", strURL ,true); xmlHttp.send(null); } function updatepage(str){ var temp = new Array(); temp = str.split('|'); document.getElementById("score").innerHTML = temp[0]; document.getElementById("score_count").innerHTML = temp[1]; } function votar(ID_Video, p) { xmlhttpPost("http://www.bestjazzvideos.com/ajaxvote.asp?ID_Video=" + ID_Video + "&p=" + p); document.getElementById('voting').innerHTML="Thank you!"; }