function write_tracker(a) {
        request="step="+a;
	$.ajax({
               type: "GET",
               url: "ajax.php",
               data: request
	});
}

$(window).unload(function(){
	$.ajax({
               type: "GET",
               url: "ajax_del.php"
	});
});
