/* Change l'état de visibilité d'un élément (show/hide) */
function toggleShow(item)
{
 var obj = document.getElementById(item);

   if (obj.style.display == 'none') {
     obj.style.display = 'block';
   }
   else if (obj.style.display == 'block') {
     obj.style.display = 'none';
   }
}

function buildMail(strAddress, strUrl)
{
	document.write('<a hr' + 'ef="mai' + 'lto:' + strAddress +'@' + strUrl + '">' + strAddress +'@' + strUrl +'</a>') ;
}

function buildMailParam(strAddress, strUrl, strParam, strText)
{
	document.write('<a hr' + 'ef="mai' + 'lto:' + strAddress +'@' + strUrl + strParam + '">' + strText +'</a>') ;
}
