// JavaScript Document
/*  

	


*/

function writeSectionMenu(strTitre, arr) {
	if (arr != null && arr != "") {
		var strHtml = "";
		strHtml += '<table width="100%"><tr>';
		strHtml += '<td id="titrePage" width="99%">'+strTitre+'</td>'
		strHtml += '<td id="sectionMenu">';
		strHtml += '<select onChange="allerSection(\'sectionMenuSelect\');" id="sectionMenuSelect"width="10">';

		for (var i=0; i<arr.length; i=i+2) {
			arrLink = arr[i+1].toString().split("/");
				strHtml += '<option value="' + arr[i+1] + '"';
				if (i==0) strHtml += ' selected';
				strHtml += '>' + arr[i] + '</option>';
		}
			
		strHtml += '</select>';
		strHtml += '</td>';
		strHtml += '<td id="sectionMenuBtn">';
		strHtml += '<a href="javascript:allerSection(\'sectionMenuSelect\');">';
		strHtml += '<img src="/img/btnMenuSection.gif" width="19" height="18" border="0" />';
		strHtml += '</a>';
		strHtml += '</td></tr></table>';
		return strHtml;
	} else {
		var strHtml = "";
		strHtml += '<table><tr>';
		strHtml += '<td id="titrePage">'+strTitre+'</td>'
		strHtml += '<td id="sectionMenu">';
		strHtml += '</td>';
		strHtml += '<td id="sectionMenuBtn">';
		strHtml += '</td></tr></table>';
		return strHtml;
	}
}