<!--

function goHist(a)
{
        history.go(a);
}

function makepop(url) {
winResult = window.open(""+url,"fenetre", "toolbar=1,location=0,directories=0,resizable=1,menubar=0,status=0,scrollbars=1,width=520,height=450,top=5,left=5");
	if (winResult.focus) 
	{
	winResult.focus();
	}
}
	
function show(object) {
  if (document.getElementById) {
    document.getElementById(object).style.visibility='visible';
  } else if (document.all) {
    document.all[object].style.visibility='visible';
  }
}
function hide(object) {
  if (document.getElementById) {
    document.getElementById(object).style.visibility='hidden';
  } else if (document.all) {
    document.all[object].style.visibility='hidden';
  }
}

// -->
