function showPgm(id){
	var req;
	req = new XMLHttpRequest();
	req.onreadystatechange = function(){
		if(req.readyState == 4){
			document.getElementById('fiche_pgm').innerHTML = req.responseText;
		}
	}
	var appel;
	appel = "getPgm.php?id="+id;
	req.open("GET",appel,true);
	req.send(null);
 }

function mouseIsOver(obj){
	obj.style.backgroundColor="#000000";
	obj.style.padding="4px 6px 4px 6px";
}

function mouseIsOut(obj){
	obj.style.backgroundColor="";
	obj.style.backgroundImage="url(images/fond_blanc_20.png)";
	obj.style.padding="1px 6px 1px 6px";
} 