// é
sendReport = function(url,title,fb,detail,comment){
	var script = document.createElement('script');
    script.setAttribute('type', 'text/javascript');
    script.setAttribute('src', 'http://'+url+'/kbreports.js?title='+title+'&fb='+fb+'&comment='+comment+'&detail='+detail);
    document.documentElement.firstChild.appendChild(script);
}

recieve = function(response){
    if (response == 0) {
        alert('Non enregistré');
    }
}

getDetail = function(){
    if($('radList_0').checked) {
        return 'Explications_Erronees';
    } else if($('radList_1').checked) {
        return 'Explications_Incompletes';
    } else if($('radList_2').checked) {
        return 'Explications_Pas_Claires';
    }
}