$(document).ready(function(){ 
	$('#slbuttonclear').click(function(){
		// alert($(this).attr("id")); 
		var xhr = new XMLHttpRequest();
		xhr.open("GET", "/includes/bookmarks/bookmarkgone.php?clearbm=yes", true);
		xhr.onreadystatechange = function(){
			if ( xhr.readyState == 4 ){
				if ( xhr.status == 200 ){
			  		window.document.getElementById("adv_search").style.display="none";
			  		//document.body.innerHTML = "My Name is: " + xhr.responseText;
	    		} else {
			       alert("UNABLE TO CLEAR SHORTLISTED PROPERTIES:\n\nSorry, but we are unable to clear your shortlisted properties at this time.");
	  			}
	  		}
		};
		xhr.send(null);
	}); 
}); 

