// This function is used to display a new browser window
// Ch. Boesiger 11.03.2002

function ref_win(ref) // ref is the arg gotten from the <a> tag of the caller
{
url='ref_charte/'+ref+'.htm';
window.open(url, 'refshow', 'scrollbars,width=450,height=300');
}

function helpform()
{
url='form_aide.htm';
window.open(url, 'formshow', 'scrollbars,resizable,width=650,height=400');
}

// fonction pour afficher la référence indiquée par 'div'
function showme(div) {
	obj = window.document.getElementById(div);
	obj.style.visibility = "visible";
} // end function showme(div)

// fonction pour masquer la référence indiquée par 'div'
function hideme(div) {
	obj = window.document.getElementById(div);
	obj.style.visibility = "hidden";
} // end function showme(div)

