function affichage_popup(nom_de_la_page)
{
	var hauteur = 600;
	var largeur = 360;
	var haut=(screen.height-hauteur)/2;
	var gauche=(screen.width-largeur)/2;
	window.open (nom_de_la_page, 'popup_tc', config='top='+haut+', left='+gauche+', width='+largeur+', height='+hauteur+', toolbar=no, menubar=no, scrollbars=yes, resizable=no, location=no, directories=no, status=no')
}

function fixed_top(select,offS)
{
	return Number(offS+document.documentElement.scrollTop+document.body.scrollTop)+'px';
}
function fixed_bottom(select,offS)
{
	return Number(-offS+document.documentElement.clientHeight-select.offsetHeight+document.documentElement.scrollTop+document.body.scrollTop)+'px';
}