var xmlhttp;function addPopularity(type,item){xmlhttp=GetXmlHttpObject();if(xmlhttp==null){alert("Browser does not support HTTP Request");return;}var url="http://www.ribbons.sg/add-popularity/";url=url+"?type="+type;url=url+"&item="+item;url=url+"&sid="+Math.random();xmlhttp.open("GET",url,true);xmlhttp.onreadystatechange=stateChanged;xmlhttp.send(null);}function stateChanged(){if(xmlhttp.readyState==4){document.getElementById("addPop").innerHTML=xmlhttp.responseText;}}function GetXmlHttpObject(){if(window.XMLHttpRequest){return new XMLHttpRequest();}if(window.ActiveXObject){return new ActiveXObject("Microsoft.XMLHTTP");}return null;}
