function handler_select(page)
{
	document.location.href = page;
}

$(document).ready(function(){
	$("form.inscription div p").addClass('off');
	$("form.inscription div label a").click(function(){
		// Si on ouvre une nouvelle rubrique, on ferme les autres
		if ($("../../p", this).attr('class') == 'off')
			$("../../../div/p", this).addClass("off");
		$("../../p", this).toggleClass("off");
		return false;
	});
});

function show_popup(url, width, height)
{
	var ref = window.open(url, 'popup', 'toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,menuBar=0,width='+width+',height='+height);
	ref.focus();
	return false;
}
