function doTracking( type, url, value ){
    if( url == null ) url = '/track.php';
    new Ajax.Request( url, {
        parameters: { 'action': type, 'value': value },
        asynchronous: false,
        onComplete: function(t){
            return;
        }
    });
}
