<!--
function openFreeAssistance(s_NameDiv) {
s_Html = '';
s_Html += '<table border="0" cellspacing="0" cellpadding="0" width="450" height="364">';
s_Html += '<tr>';
s_Html += '<td width="450" height="50" style="background-image: url(\'./freeassistance/img/banner-top.jpg\');"><iframe id="zone1" name="zone1" src="./freeassistance/zone1.php?id=1" width="450" height="50" scrolling="no" frameborder="0" marginwidth="0" marginheight="0" allowtransparency="true"></iframe></td>';
s_Html += '</tr>';
s_Html += '<tr>';
s_Html += '<td width="450" height="264" style="background-image: url(\'./freeassistance/img/banner-center.jpg\');"><iframe id="zone2" name="zone2" src="./freeassistance/zone2.php?id=1" width="450" height="264" scrolling="auto" frameborder="0" marginwidth="0" marginheight="0" allowtransparency="true"></iframe></td>';
s_Html += '</tr>';
s_Html += '<tr>';
s_Html += '<td width="450" height="50" style="background-image: url(\'./freeassistance/img/banner-bottom.jpg\');"><iframe id="zone3" name="zone3" src="./freeassistance/zone3.php?id=1" width="450" height="50" scrolling="no" frameborder="0" marginwidth="0" marginheight="0" allowtransparency="true"></iframe></td>';
s_Html += '</tr>';
s_Html += '</table>';
document.getElementById(s_NameDiv).innerHTML = s_Html;
document.getElementById(s_NameDiv).style.display = 'block';
}
function navigFreeAssistance(i_Id) {
self.zone1.location = '/freeassistance/zone1.php?id='+i_Id;
self.zone2.location = '/freeassistance/zone2.php?id='+i_Id;
self.zone3.location = '/freeassistance/zone3.php?id='+i_Id;
}
function openInfosColonneHome(s_Url, s_Name) {
mafenetre = window.open(s_Url, s_Name);
mafenetre.focus();
}

function closeBox() {	
// Fermeture des box
var myDiv = self.document.getElementById('box');
myDiv.style.display = "none";
var myDiv = self.document.getElementById('boxContact');
myDiv.style.display = "none";
var myDiv = self.document.getElementById('fondtransparent');
myDiv.style.display = "none";
}

function openBox(sTitre, sContenu) {
//Alimentation
document.getElementById('titlebox').innerHTML = sTitre;
document.getElementById('textbox').innerHTML = sContenu;
// Affichage du contenu 
var myDiv = self.document.getElementById('fondtransparent');
myDiv.style.display = "block";
var myDiv = self.document.getElementById('box');
myDiv.style.display = "block";
var myDiv = self.document.getElementById('boxContact');
myDiv.style.display = "none";
}

function openBoxContact(sTitre, sContenu) {
//Alimentation
document.getElementById('titleboxcontact').innerHTML = sTitre;
document.getElementById('textboxcontact').innerHTML = sContenu;
// Affichage du contenu 
var myDiv = self.document.getElementById('boxContact');
myDiv.style.display = "block";
var myDiv = self.document.getElementById('box');
myDiv.style.display = "none";
}

function getPage(sUrl) {
//redirection 
window.location.href(sUrl);			
}

-->