function addToMyFavourite(str,str_1,stuff)      //this.value
{	
    //alert(str+str_1+stuff);
	if (str.length==0)
	{ 
	document.getElementById("status_container").innerHTML=""
	return
	}
	xmlHttp=GetXmlHttpObject()
	if (xmlHttp==null)
	{
	alert ("Browser does not support HTTP Request")
	return
	} 
	var url="add_to_my_favourites.php"
	url=url+"?item_id="+str+"&userid="+str_1+"&stuff_recog_id="+stuff
	url=url+"&sid="+Math.random()
	xmlHttp.onreadystatechange=stateChangedForAddToFav
	xmlHttp.open("GET",url,true)
	xmlHttp.send(null)
	$('#status_container').slideDown(1000);
	$('#status_container').highlightFade({       //Stunning Highlights uncomment it
		speed:1000
		});
	window.setTimeout('$("#status_container").slideUp()',4000,'javascript');	
   }
function stateChangedForAddToFav() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{ 
document.getElementById("status_container").innerHTML=xmlHttp.responseText;
} 
} 