function showhetqtabs(hilite)
{
	// not used in the current version; left for compatibility
}

function menu_sep(size)
{
	document.write('<tr><td bgcolor="#FFFFFF" width="99%"><img src="/img/sp.gif" width=1 height=' + size + '></td><td width=2><img src="/img/sp.gif" width=2 height=' + size + '></td></tr>');
}

function menu_sep_t(size)
{
	document.write('<tr><td width="99%"><img src="/img/sp.gif" width=1 height=' + size + '></td><td width=2><img src="/img/sp.gif" width=2 height=' + size + '></td></tr>');
}

function menu_item(text, dir)
{
	var bg_img_suffix, dir_ref, text_class;
	if (dir == '') {
		bg_img_suffix = '-home';
		dir_ref = '/';
	} else {
		bg_img_suffix = '';
		dir_ref = '/' + dir;
	}
	if (dir == cur_dir) {
		bg_img_suffix += '-1';
		text_class = 'menu1';
	} else {
		bg_img_suffix += '';
		text_class = 'menu';
	}
	document.write('<tr><td background="/img/mbg' + bg_img_suffix + '.gif" class=' + text_class
	   + '><a href="/' + cur_lang + dir_ref + '">' + text + '</a></td><td><img src="/img/sp.gif" width=2 height=20></td></tr>');
}
