function changefond(elem){
//ONMOUSEOVER
	document.getElementById(elem).style.borderColor  = "#FF9600";
}
function changefond2(elem){
//ONMOUSEOUT
	document.getElementById(elem).style.borderColor  = "#008000";
}
function rolloverIn(elem){
	document.getElementById(elem).src="../css/surmesure/on_creer.png";
}
function rolloverOut(elem){
	document.getElementById(elem).src="../css/surmesure/off_creer.png";
}
function rolloverIn2(elem){
	document.getElementById(elem).src="../css/surmesure/on_creer2.png";
}
function rolloverOut2(elem){
	document.getElementById(elem).src="../css/surmesure/off_creer2.png";
}

function changecouleurcontour1(elem){
//ONMOUSEOVER
	document.getElementById(elem).style.borderColor = "#87CC01";
	document.body.style.cursor = "pointer";
}
function changecouleurcontour2(elem){
//ONMOUSEOUT
	document.getElementById(elem).style.borderColor = "#c7c7c7";
	document.body.style.cursor = "default";
}