
function addKarma(user,review,tip,id){
	var xmlhttp=null;
	
	
	if (window.XMLHttpRequest) {// all modern browsers
		xmlhttp=new XMLHttpRequest();
	}
		
	else if (window.ActiveXObject) {// for IE5, IE6
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
		 
	if (xmlhttp!=null) {
			xmlhttp.open('GET', 'js/addKarma.php?USER='+user+'&REVIEW='+review+'&TIP='+tip, false);
			xmlhttp.send(null);
	}
		
	if (xmlhttp.status==200) {
		if(xmlhttp.responseText.indexOf('true') == 0) {
			document.getElementById(id).src="images/voted.png";
			document.recalc(true); 
		}
	}
}