function Row( Var1, Var2, Var3, Var4, Var5, Var6){
var Col1=Var1; // The first column is the Date
var Col2=Var2; // The second column is the Event
var Col3=Var3; // The third column is the Venue
var This_Row = '<tr>';

This_Row+= '<td align="left" width="170"><span class="dish">' +Col1+ '</span></td>';     // 12%  was 165
This_Row+= '<td align="left" width="*"><span class="desc">' +Col2+ '</span></td>';     // 77%
This_Row+= '<td align="center" width="70"><span class="price">' +Col3+ '</span></td>';     // 11% was 75
This_Row+= '</tr>';

document.write(This_Row);
}


function ERow( Var1, Var2, Var3, Var4, Var5, Var6){
var Col1=Var1; // The first column is the Contact
var Col2=Var2; // The second column is the eperson
var Col3=Var3; // The third column is the eaddress
var This_ERow = '<tr>';

This_ERow+= '<td align="left" width="165"><span class="dish">' +Col1+ '</span></td>';     // 12%
This_ERow+= '<td align="left" width="*"><span class="desc">' +Col2+ '</span><span class="price">' +Col3+ '</span></td>';     // 77%
This_ERow+= '<td align="center" width="75"><span class="price">' +Col3+ '</span></td>';     // 11%
This_ERow+= '</tr>';

document.write(This_ERow);
}

function GRow( Var1, Var2, Var3, Var4, Var5, Var6){
var Col1=Var1; // The first column is the Ing
var Col2=Var2; // The second column is the Desc
var Col3=Var3; // The third column is the Space
var This_GRow = '<tr>';

This_GRow+= '<td class="2" align="left" width="165"><span class="dish">' +Col1+ '</span></td>';     // 12%
This_GRow+= '<td class="2" align="left" width="*"><span class="gldesc">' +Col2+ '<!br><!br></span></td>';     // 77%
This_GRow+= '<td class="2" align="center" width="75"><span class="price">' +Col3+ '</span></td>';     // 11%
This_GRow+= '</tr>';

document.write(This_GRow);
}


function Email(name,domain){
document.write('<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="000000">');
document.write('<b>email: <a href=\"mailto:' + name + '@' + domain + '\">');
document.write(name + '@' + domain + '</a>');
document.write('<b></font>');
}

function Webad(name,address){
document.write('<span class="webad">');
document.write('<a href=\"http:/\/\www.' + address + '\"  target="new">');
document.write(name + '</a>');
document.write('</span>');
}
