

function gen_line2(titre, desc1, prix1, prix2, desc2, prix3, prix4) 
	{
				document.write('<tr>');
					document.write('<td class="left top" colspan=3>' + titre + '</td>');
				document.write('</tr>');
				document.write('<tr>');
					document.write('<td class="left top">' + desc1 + '</td>');
					if (prix1.length == 0) prix1 = "&nbsp;";
					else
					prix1 = prix1 + " €";
					document.write('<td class="center top" width="65">' + prix1 + '</td>');
					if (prix2.length == 0)  prix2 = "&nbsp;";
					else
					prix2 = prix2 + " €";
					document.write('<td class="center top" width="65">' + prix2 + '</td>');					
				document.write('</tr>');
				document.write('<tr>');
					document.write('<td class="left top">' + desc2 + '</td>');
					if (prix3.length == 0) prix3 = "&nbsp;";
					else
					prix3 = prix3 + " €";
					document.write('<td class="center top" width="65">' + prix3 + '</td>');
					if (prix4.length == 0)  prix4 = "&nbsp;";
					else
					prix4 = prix4 + " €";
					document.write('<td class="center top" width="65" height="30">' + prix4 + '</td>');
				document.write('</tr>');
	}

