/*
   ================================================================
   Clickout
   ================================================================
*/
/*
function clickout(url)
{
  jQuery.ajax({
     type: "GET",
     url: "clickout.php",
     data: "url="+url
   });
   return false;
}
*/


function clickout2(url){
	new Ajax("tl_files/clickout.php", {
		method: 'get',
    data: { 'url':url }
	}).request();
}
 
 
function clickout(clickouturl) {

  var req = new Request({
        method: 'get',
        url: "tl_files/clickout.php",
        data: { 'url' : clickouturl}
        //onRequest: function() { alert('Request made. Please wait...'); },
        //onComplete: function(response) { alert('Response: ' + response); }
      }).send();
  
}
