//----------------------------------------------------------------------
// XMLHttpRequest
//----------------------------------------------------------------------
function createRequest(){
	if(window.ActiveXObject){
		xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
	} else if(window.XMLHttpRequest){
		xmlHttp = new XMLHttpRequest();
	}
	return xmlHttp;
}

// favMe
// ----------------------------------------------------------------------
function favMe(id){
	
	alert(id);
	
	if(id){
	
		// ajax request object aanmaken
		var xmlHttp		= createRequest();
		
		// url openen
		var url			= 'mobile.php?do=favMe&id='+id;
		xmlHttp.open("GET", url, true);
		
		// lege waarde verzenden (anders wordt xmlHttp.open() niet uitgevoerd)
		xmlHttp.send(null);
		
	}
}

