function getResults() {
  var resString = '<table cellspacing="1" cellpadding="0" width="560" border="0" ><tr class="headRow"  bgcolor=black>'
  resString += '<td><p><font color=white><b>&nbsp;Model N<u>o</u></b></p></td><td width="70" align="center"><p><font color=white><b>Price</b>'
  resString += '</p></td><td width="140"><p><font color=white><b>&nbsp;Load type</b></font></p></td><td width="70" align="center">'
  resString += '<p><font color=white><b>Volume</b></p></td></tr>'
    for(var i=0;i<results.length-1;++i) {
	  resString += '<tr class="bodyRowproduct"><td><b><a class="tableFont" href="/products/'+results[i][0]+'/?prodCode='
	  resString += results[i][0]+'">'+results[i][0]+'</a></b></td><td align="center"><p class="tableFont">&pound;'
	  resString += results[i][1]+'</p></td><td><p class="tableFont">'+results[i][2]+'</p></td><td '
	  resString += 'align="center"><p class="tableFont">'+results[i][3]+'L</p></td></tr>'
	}
  return resString+'</table>'
}
