	var strRf = document.referrer ? document.referrer : self.location;
	var strSl = self.location ? self.location : '';

	//document.write("<img src='http://www.watchessell.org/flow.php?from="+escapestrRf)+"&to="+escape(strSl)+"' style='display:none'/>");
	
	$.ajax({
	   type: "POST",
	   url: "http://www.watchessell.org/flow.php",
	   data: "from="+strRf+"&to="+strSl,
	   success: function(msg){
		 //alert( "Data Saved: " + msg );
	   },
	   error:function(msg, textStatus, errorThrown){
		   //alert( "error:msg:"+msg+";status:"+textStatus+";errorThrown:"+errorThrown );
	   }
	});
	
