/* Fonction getElementById pour IE4 */

if (!document.getElementById && document.all)
    document.getElementById = function(id) {
        return document.all[id];
    }
else if (!document.getElementById && !document.all)
    document.getElementById = function(id) {
    	return { style: {} };
    }