function ShowHide(theIdToShow,theIdToHide){
	$("#"+theIdToShow).show();
	$("#"+theIdToHide).hide();
}

function form_brochure(){
	// JQuery Layer Modal for Form Doc
	$('#basicModalContent').modal({onOpen: modalOpen,onClose: modalClose});
	
	if(isIE6){
		$("#modalOverlay").css("position","absolute");
		var pp = document.body.offsetHeight + 'px';
		$("#modalOverlay").css("height",pp);
		$("#modalContainer").css("position","absolute");
	}
	//FIN JQuery Layer Modal for Form Doc
}

$(document).ready(function(){
	//classes insérés via FCK
	if($("span.puce_orange").parent().attr("href") != undefined){
		$("span.puce_orange").parent().css("text-decoration","none");
	}
});
