function TableBegin(width, height, textAlign, tableAlign, textValign)
{
	var s = "";
	s += "<table width='"+width+"' height='"+height+"' align='"+tableAlign+"' cellspacing=0 cellpadding=0 border=0>";
	s += "<tr>";
	s += "<td width=4 height=4 bgcolor=342E29><img src=/i/b/b00c0.gif width=4 height=4></td>";
	s += "<td height=4 background=/i/b/b00t.gif bgcolor=342E29></td>";
	s += "<td width=4 height=4 bgcolor=342E29><img src=/i/b/b00c1.gif width=4 height=4></td>";
	s += "</tr>";
	s += "<tr>";
	s += "<td width=4 background=/i/b/b00l.gif bgcolor=342E29></td>";
	s += "<td align='textAlign' valign='"+textValign+"' width='100%' height='"+height+"' valign=middle bgcolor=181B21>";

	document.write(s);
}

function TableEnd()
{
	var s = "";
	s += "</td>";
	s += "<td width=4 background=/i/b/b00r.gif bgcolor=342E29></td>";
	s += "</tr>";
	s += "<tr>";
	s += "<td width=4 height=4 bgcolor=342E29><img src=/i/b/b00c2.gif width=4 height=4></td>";
	s += "<td height=4 background=/i/b/b00b.gif bgcolor=342E29></td>";
	s += "<td width=4 height=4 bgcolor=342E29><img src=/i/b/b00c3.gif width=4 height=4></td>";
	s += "</tr>";
	s += "</table>";

	document.write(s);
}

function ConvertItemTypeToStr(_type, subtype)
{
   return ItemTypeStr[_type + '.' + subtype] || ItemTypeStr[_type] || ItemTypeStr['err'];
}

