function heading(title)
{
	document.write('<tr><td class=myheading>' + title + '</TD></TR>')
}

function giveLink(full,abbrev,level)
{
	document.write('<TR><TD class=menu' + level +'>')
	document.write('<A CLASS="lang" HREF="' + abbrev.toLowerCase() + '.htm">')
	document.write(full + '</A></TD></TR>')
}


heading('Software')
giveLink('Keyboards','Keyboards',1)
giveLink('Word-processing','word_proc',1)

heading('Contact')
giveLink('About us','About',1)
giveLink('Feedback','Feedback',1)
document.write('</table>')
