function print_table_header() {
	document.write('<table class="gaschart">');
	document.write('<tr>');
	document.write('<th width="40">Price</th>');
	document.write('<th>Station</th>');
	document.write('<th width="100">Area</th>');
	document.write('<th width="130">Time</th></tr>');
	return 1;
}

function print_table_footer() {
	document.write('</table>');
	return 1;
}

function print_prices_table(price, station_nm, address, area, tme) {
	document.write('<tr><td>' + price + '</td>');
	document.write('<td><strong>' + station_nm + '</strong><br />' + address + '</td>');
	document.write('<td>' + area + '</td>');
	document.write('<td>' + tme + '</td></tr>');
	return 1;
}

function main(low_prices, price_cnt, site, city_title, display_nm) {
	var i, k;
	document.write('<h2>10 lowest gas prices in ' + display_nm + '</h2>');
	i = print_table_header();
	for (i = 0; i < price_cnt; ++ i) {
	   k = print_prices_table(low_prices[i][0], low_prices[i][1], low_prices[i][2],low_prices[i][3], low_prices[i][4]);
	}
	i = print_table_footer();
	return 1;
}

var j;

j = main(low_prices, price_cnt, site, city_title, display_nm);
