function CurryRow( Var1, Var2, Var3, Var4, Var5, Var6, Var7, Var8){
var Col1=Var1; // The first column is the dish
var Col2=Var2; // The second column is the desc
var Col3=Var3; // The third column is the tand
var Col4=Var4; // The third column is the chicklamb
var Col5=Var5; // The third column is the chicklambtikk
var Col6=Var6; // The third column is the mixveg
var Col7=Var7; // The third column is the kprawn
var Col8=Var8; // The third column is the prawn

var This_CurryRow = '<tr>';

This_CurryRow+= '<td align="left" width="80"><span class="dish">' +Col1+ '</span></td>';     // 12%
This_CurryRow+= '<td align="left" width="*"><span class="desc">' +Col2+ '</span></td>';     // 77%
This_CurryRow+= '<td align="center" width="55"><span class="price">' +Col3+ '</span></td>';     // 11%
This_CurryRow+= '<td align="center" width="55"><span class="price">' +Col4+ '</span></td>';     // 12%
This_CurryRow+= '<td align="center" width="55"><span class="price">' +Col5+ '</span></td>';     // 77%
This_CurryRow+= '<td align="center" width="55"><span class="price">' +Col6+ '</span></td>';     // 11%
This_CurryRow+= '<td align="center" width="55"><span class="price">' +Col7+ '</span></td>';     // 77%
This_CurryRow+= '<td align="center" width="55"><span class="price">' +Col8+ '</span></td>';     // 11%

This_CurryRow+= '</tr>';

document.write(This_CurryRow);

}
