function DisplayFaq(id) {
for(i=1;i<25;i++) {
if(i == id) {
document.getElementById('faq' + i).style.display='block';
}
else {
document.getElementById('faq' + i).style.display='none';
}
}
}

function VersionNavigateur(Netscape, Explorer)
{
if ((navigator.appVersion.substring(0,3) >= Netscape && navigator.appName == 'Netscape') ||
(navigator.appVersion.substring(0,3) >= Explorer && navigator.appName.substring(0,9) == 'Microsoft'))
return true;
else return false;
}

function copy(theField) {
var tempval=eval("document."+theField)
tempval.focus();
tempval.select();
therange=tempval.createTextRange()
therange.execCommand("Copy")
window.status="Code HTML sélectionné copié dans le presse-papier !"
setTimeout("window.status=''",5000)
}
