function top()
{
         document.write('<table width=550 align=center><tr><td>');
}

function bottom()
{
         document.write('</td></tr></table>');
}

function showtitle(title, backref)
{
         document.write(
            '<table width=500 border=0 align=center class="titlebar">'+
	    '<tr><td><img src="../picture/' + backref + '.gif"><br>&nbsp; &nbsp; &nbsp; &nbsp; <font color=#333333>&bull; ' + title +'</font></td><td align=right><a href="../' + backref + '.htm">Back</a></td></tr></table><br>'
         )
}

function showsubhead(title)
{
         document.write(
            '<table width=495 align=center class="lbtable">'+
            '<tr><td colspan=2 class="subhead">' + title +'</td></tr>'+
            '<tr class="tableheader"><td width=100><b>Brand</b></td>'+
            '<td width=400><b>Item Description</b></td></tr>'
         )
}

function subhead(title)
{
         document.write(
            '<table width=495 align=center class="lbtable">'+
            '<tr><td colspan=2 class="subhead">' + title +'</td></tr>'+
            '<tr class="tableheader"><td width=100><b>Brand</b></td>'+
            '<td width=400><b>Item Description</b></td></tr>'
         )
}

function subend()
{
         document.write('</table><br>')
}



function brandstart(brand)
{
         document.write('<tr><td width=100 height=35 bgcolor=#ffffff><img src="../picture/link/' +brand+ '.gif"></td><td><ul type="dish">');
}

function brandstart_txt(brand)
{
         document.write('<tr><td width=100 height=35 align=center><b>' + brand + '</b></td><td><ul type="dish">');
}

function showitem(des, url)
{
         if (url=="")
             document.write('<li>' + des);
         else
             document.write('<li><a href="' + url + '" onClick="return popup(this, \'mrdvd\')">' + des + '</a>');
}

function showitem2(des, url)
{
         if (url=="")
             document.write('<li>' + des);
         else
             document.write('<li><a href="' + url + '" target=_blank>' + des + '</a>');
}

function brandend()
{
         document.write('</td></tr>');
}

function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=600,height=400,scrollbars=yes,left=20,top=20');
return false;
}