/
com/planet_ink/coffee_mud/Abilities/Common/
com/planet_ink/coffee_mud/Abilities/Diseases/
com/planet_ink/coffee_mud/Abilities/Druid/
com/planet_ink/coffee_mud/Abilities/Fighter/
com/planet_ink/coffee_mud/Abilities/Languages/
com/planet_ink/coffee_mud/Abilities/Misc/
com/planet_ink/coffee_mud/Abilities/Prayers/
com/planet_ink/coffee_mud/Abilities/Properties/
com/planet_ink/coffee_mud/Abilities/Skills/
com/planet_ink/coffee_mud/Abilities/Songs/
com/planet_ink/coffee_mud/Abilities/Specializations/
com/planet_ink/coffee_mud/Abilities/Spells/
com/planet_ink/coffee_mud/Abilities/Thief/
com/planet_ink/coffee_mud/Abilities/Traps/
com/planet_ink/coffee_mud/Behaviors/
com/planet_ink/coffee_mud/CharClasses/
com/planet_ink/coffee_mud/CharClasses/interfaces/
com/planet_ink/coffee_mud/Commands/
com/planet_ink/coffee_mud/Commands/interfaces/
com/planet_ink/coffee_mud/Common/
com/planet_ink/coffee_mud/Common/interfaces/
com/planet_ink/coffee_mud/Exits/interfaces/
com/planet_ink/coffee_mud/Items/Armor/
com/planet_ink/coffee_mud/Items/Basic/
com/planet_ink/coffee_mud/Items/BasicTech/
com/planet_ink/coffee_mud/Items/CompTech/
com/planet_ink/coffee_mud/Items/MiscMagic/
com/planet_ink/coffee_mud/Items/Weapons/
com/planet_ink/coffee_mud/Items/interfaces/
com/planet_ink/coffee_mud/Libraries/
com/planet_ink/coffee_mud/Libraries/interfaces/
com/planet_ink/coffee_mud/Locales/
com/planet_ink/coffee_mud/MOBS/
com/planet_ink/coffee_mud/Races/
com/planet_ink/coffee_mud/Races/interfaces/
com/planet_ink/coffee_mud/WebMacros/
com/planet_ink/coffee_mud/WebMacros/interfaces/
com/planet_ink/coffee_mud/core/
com/planet_ink/coffee_mud/core/collections/
com/planet_ink/coffee_mud/core/interfaces/
com/planet_ink/coffee_mud/core/intermud/
com/planet_ink/coffee_mud/core/intermud/i3/
com/planet_ink/coffee_web/server/
com/planet_ink/siplet/applet/
lib/
resources/factions/
resources/fakedb/
resources/progs/autoplayer/
resources/quests/holidays/
web/
web/admin.templates/
web/admin/grinder/
web/admin/images/
web/clan.templates/
web/pub.templates/
web/pub/images/mxp/
web/pub/sounds/
web/pub/textedit/
<HTML>
<BODY BGCOLOR=BLACK TOPMARGIN=0 LEFTMARGIN=0 TEXT=WHITE>
<TABLE BORDER=1 CELLPADDING=0 CELLSPACING=0 WIDTH=100% HEIGHT=10 ID=MYTABLE>
<TR HEIGHT=12>
<TD ID=BAR0 WIDTH=10% HEIGHT=12 ALIGN=CENTER STYLE="background-color: black" ONCLICK="DoMe(0)"><FONT SIZE=-2>1</FONT></TD>
<TD ID=BAR1 WIDTH=10% HEIGHT=12 ALIGN=CENTER STYLE="background-color: black" ONCLICK="DoMe(1)"><FONT SIZE=-2>2</FONT></TD>
<TD ID=BAR2 WIDTH=10% HEIGHT=12 ALIGN=CENTER STYLE="background-color: black" ONCLICK="DoMe(2)"><FONT SIZE=-2>3</FONT></TD>
<TD ID=BAR3 WIDTH=10% HEIGHT=12 ALIGN=CENTER STYLE="background-color: black" ONCLICK="DoMe(3)"><FONT SIZE=-2>4</FONT></TD>
<TD ID=BAR4 WIDTH=10% HEIGHT=12 ALIGN=CENTER STYLE="background-color: black" ONCLICK="DoMe(4)"><FONT SIZE=-2>5</FONT></TD>
<TD ID=BAR5 WIDTH=10% HEIGHT=12 ALIGN=CENTER STYLE="background-color: black" ONCLICK="DoMe(5)"><FONT SIZE=-2>6</FONT></TD>
<TD ID=BAR6 WIDTH=10% HEIGHT=12 ALIGN=CENTER STYLE="background-color: black" ONCLICK="DoMe(6)"><FONT SIZE=-2>7</FONT></TD>
<TD ID=BAR7 WIDTH=10% HEIGHT=12 ALIGN=CENTER STYLE="background-color: black" ONCLICK="DoMe(7)"><FONT SIZE=-2>8</FONT></TD>
<TD ID=BAR8 WIDTH=10% HEIGHT=12 ALIGN=CENTER STYLE="background-color: black" ONCLICK="DoMe(8)"><FONT SIZE=-2>9</FONT></TD>
<TD ID=BAR9 WIDTH=10% HEIGHT=12 ALIGN=CENTER STYLE="background-color: black" ONCLICK="DoMe(9)"><FONT SIZE=-2>10</FONT></TD>
</TR>
</TABLE>
<SCRIPT LANGUAGE=JavaScript>
	var currColors = new Array(10);
	for(var i=0;i<10;i++)
		currColors[i]='b';
	function redStatus(wnum)
	{
		redColor(wnum);
	}
	function redColor(wnum)
	{
		var obj = document.getElementById('BAR'+wnum);
		obj.style.backgroundColor='red';
		currColors[wnum]='r';
	}
	function yellowStatus(wnum)
	{
		yellowColor(wnum);
	}
	function yellowColor(wnum)
	{
		var obj = document.getElementById('BAR'+wnum);
		obj.style.backgroundColor='yellow';
		currColors[wnum]='y';
	}
	function blackStatus(wnum)
	{
		blackColor(wnum);
	}
	function blackColor(wnum)
	{
		var obj = document.getElementById('BAR'+wnum);
		obj.style.backgroundColor='black';
		currColors[wnum]='b';
	}
	function greenStatus(wnum)
	{
		greenColor(wnum);
	}
	function greenColor(wnum)
	{
		var obj = document.getElementById('BAR'+wnum);
		obj.style.backgroundColor='green';
		currColors[wnum]='g';
	}
	function lightgreenStatus(wnum)
	{
	lightgreenColor(wnum);
}
	function lightgreenColor(wnum)
	{
		var obj = document.getElementById('BAR'+wnum);
		obj.style.backgroundColor='lightgreen';
		currColors[wnum]='l';
	}
	function greenIfLight(wnum)
	{
		if(currColors[wnum]=='l')
			greenColor(wnum);
	}
	function DoMe(wnum)
	{
		if(top.term.alldivs[wnum]==null)
			top.term.openThisWindow(wnum);
		else
			top.term.goDefault(wnum);
	}
</SCRIPT>
</BODY>
</HTML>