function confirmation(message, lien)
{
	$rep = confirm(message);
	if($rep == true) window.location = lien;
}

function confirmation_submit(message)
{
var agree=confirm(message);
if (agree)
	return true ;
else
	return false ;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}