function vacsyFoodLastLongerTable( data_array )
{
	var res = "<table border='0' cellspacing='0' cellpadding='0' align='center' width='100%' style='border:solid 1px #e0e0e0;border-left:0px;border-bottom:0px'>";
	for( var record_no = 0; record_no < data_array.length; record_no++ )
	{
		if( record_no == 0 )
		{
			res += "<tr align='center' style='background-color:#f0f0f0'>";
			res += "<td width='33%' style='padding:5px;border:solid 1px #e0e0e0;border-top:0px;border-right:0px;color:#909090'><b>"+data_array[record_no]['type_of_food']+"</td>";
			res += "<td width='100' style='padding:5px;border:solid 1px #e0e0e0;border-top:0px;border-right:0px;color:#909090'><b>"+data_array[record_no]['food_without_vacsy']+"</td>";
			res += "<td width='33%' style='padding:5px;border:solid 1px #e0e0e0;border-top:0px;border-right:0px;color:#909090'><b>"+data_array[record_no]['food_shelf-life_without_vacsy']+"</td>";
			res += "<td width='100' style='padding:5px;border:solid 1px #e0e0e0;border-top:0px;border-right:0px;color:#909090'><b>"+data_array[record_no]['food_with_vacsy_system']+"</td>";
			res += "<td width='33%' style='padding:5px;border:solid 1px #e0e0e0;border-top:0px;border-right:0px;color:#909090'><b>"+data_array[record_no]['food_shelf-life_with_vacsy']+"</td>";
			res += "</tr>";
		}
		else
		{
			res += "<tr align='center'>";
			res += "<td style='padding:5px;border:solid 1px #e0e0e0;border-top:0px;border-right:0px;color:#909090'>"+data_array[record_no]['type_of_food']+"</td>";
			res += "<td style='padding:0px;border:solid 1px #e0e0e0;border-top:0px;border-right:0px;color:#909090'><img src='"+data_array[record_no]['food_without_vacsy']+"'></td>";
			res += "<td style='padding:5px;border:solid 1px #e0e0e0;border-top:0px;border-right:0px;color:#909090;background-color:#fafafa'>"+data_array[record_no]['food_shelf-life_without_vacsy']+"</td>";
			res += "<td style='padding:0px;border:solid 1px #e0e0e0;border-top:0px;border-right:0px;color:#909090'><img src='"+data_array[record_no]['food_with_vacsy_system']+"'></td>";
			res += "<td style='padding:5px;border:solid 1px #e0e0e0;border-top:0px;border-right:0px;color:#909090;background-color:#fafafa'>"+data_array[record_no]['food_shelf-life_with_vacsy']+"</td>";
			res += "</tr>";
		}
	}
	res += "</table>";
	document.write(res);
}

