function confirmLink(theLink, confirmMsg){
   	// La confirmation ne s'opère pas si il n'y a pas de message
    if (confirmMsg == '') {
   	    return true;
    }

   	var is_confirmed = confirm(confirmMsg);
    if (is_confirmed) {
    	    //theLink.href += '&is_js_confirmed=1';
		document.location.href=''+theLink+'';
    }
   	return is_confirmed;
} // end of the 'confirmLink()' function

function FocusText(BoxName){
	if (BoxName.value == BoxName.defaultValue){
		BoxName.value = '';
	}
}
function BlurText(BoxName){
	if (BoxName.value == ''){
		BoxName.value = BoxName.defaultValue;
	}
}