/
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>
<HEAD>
<TITLE>Siplet</TITLE>
<LINK REL=StyleSheet HREF="/siplet/term.css" TYPE="text/css">
	<link rel="coffeemud icon" href="../images/coffeemud.ico" >
<SCRIPT LANGUAGE=JavaScript src="/siplet/floater.js"></SCRIPT>
<script language=JavaScript>
var allwindows=new Array(10);
var alldivs = new Array(10);
var allapplets=new Array(10);

var currentWindow=0;
for(var i=0;i<10;i++)
	alldivs[i]=null;

function closeWindow()
{
	window.console.info("Siplet terminal closeWindow");
	allwindows[currentWindow].closeWindow();
}

function addToWindow(s)
{
	allwindows[currentWindow].addToWindow(s);
}
function keyDown(e)
{
	allwindows[currentWindow].keyDown(e);
}
function reconnect(s)
{
	window.console.info("Siplet terminal reconnect");
	allwindows[currentWindow].reconnect();
}
function sendData(me)
{
	me==''+me.replace(/[\u2018\u2019]/g, "'").replace(/[\u201C\u201D]/g, '"');
	allwindows[currentWindow].sendData(me);
}
function addToPrompt(x,att)
{
	allwindows[currentWindow].addToPrompt(x,att);
}
function goDefault(x)
{
	allwindows[currentWindow].goDefault(x);
}

function windowsOpen() 
{
	var num = 0;
	for(var i=0;i<10;i++)
		if(alldivs[i]!=null)
			num++;
	return num;
}
	
function openWindow()
{
	var foundX = -1;
	for(var i=0;i<10;i++)
	{
		if(alldivs[i]==null)
		{
			foundX=i;
			break;
		}
	}
	if(foundX<0)
	{
		if(window.alert) window.alert("Unable to open another window.  10 is the limit!");
	}
	else
		openThisWindow(foundX);
}

function openThisWindow(foundX)
{
	currentWindow=foundX;
	var wname='dwindow'+currentWindow;
    var thespan=document.getElementById("EWINDOW" + currentWindow);
    alldivs[currentWindow] = thespan;
    thespan.innerHTML=thespan.innerHTML+getFrameHTML(wname,currentWindow);
    loadwindow(top.termurl+'?wnum='+currentWindow,780,355,wname,currentWindow);
}

function rotateWindow()
{
	if(windowsOpen()==0) return;
	var wname='dwindow'+currentWindow;
    var thespan=document.getElementById(wname);
    thespan.style.display='none';
    
    currentWindow++;
    if(currentWindow==10) currentWindow=0;
    while((currentWindow<10)&&(alldivs[currentWindow]==null))
    	currentWindow++;
    if(currentWindow>=10) return;
	wname='dwindow'+currentWindow;
    thespan=document.getElementById(wname);
    thespan.style.display='';
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR=BLACK>
<DIV ID=EWINDOW1 NAME=EWINDOW1>
</DIV>
<DIV ID=EWINDOW2 NAME=EWINDOW2>
</DIV>
<DIV ID=EWINDOW3 NAME=EWINDOW3>
</DIV>
<DIV ID=EWINDOW4 NAME=EWINDOW4>
</DIV>
<DIV ID=EWINDOW5 NAME=EWINDOW5>
</DIV>
<DIV ID=EWINDOW6 NAME=EWINDOW6>
</DIV>
<DIV ID=EWINDOW7 NAME=EWINDOW7>
</DIV>
<DIV ID=EWINDOW8 NAME=EWINDOW8>
</DIV>
<DIV ID=EWINDOW9 NAME=EWINDOW9>
</DIV>
<DIV ID=EWINDOW0 NAME=EWINDOW0>
</DIV>
<SCRIPT LANGUAGE=JavaScript>
window.onload=new Function('openWindow()');
</SCRIPT>
</BODY></HTML>