// JavaScript Document

var bientot = new Array(
				/*["15 septembre 2006","Théâtre du Petit Champlain (supplémentaire)","68, rue du Petit-Champlain, Québec, 20h<br/>Billetterie : 418.692.2631<br/><a href='http://www.theatrepetitchamplain.com' target='_blank'>www.theatrepetitchamplain.com</a>","","",""],
				["16 septembre 2006","Théâtre du Petit Champlain (supplémentaire)","68, rue du Petit-Champlain, Québec, 20h<br/>Billetterie : 418.692.2631<br/><a href='http://www.theatrepetitchamplain.com' target='_blank'>www.theatrepetitchamplain.com</a>","","",""]*/
			);

function ecrireHtml(nomTableau) {
	var c = "<table border='0' cellpadding='0' cellspacing='0' align='left' style='width:370px;'>";
	for(var i=0; i<nomTableau.length; i++) {
		c += "<tr valign='top'>";
		c += "<td id='date'>" + nomTableau[i][0] +  " :</td>";
		c += "<td id='leSpectacle'><span style='font-weight:600;'>" + nomTableau[i][1] + "</span><br />";
		
		if (nomTableau[i][3] != "") {
			c += "<a href='" + nomTableau[i][3] + "' target='_blank' title='Cliquez ici pour acc&eacute;der au site Web'>" + nomTableau[i][2] + "</a><br />";
		} else {
			c += nomTableau[i][2] + "<br />";		
		}
		if (nomTableau != "temp") {
			c += nomTableau[i][4] + "<br />";
			if (nomTableau[i][5] != "") {
				c += "Info : " + nomTableau[i][5] + "</td>";
			} else {
				c += "</td>";
			}
		}
		c += "</tr>";
	}
	c += "</table>";
	document.getElementById("zone").innerHTML = c;
}