/
com/planet_ink/coffee_mud/Abilities/
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/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/Spells/
com/planet_ink/coffee_mud/Abilities/Thief/
com/planet_ink/coffee_mud/Abilities/Traps/
com/planet_ink/coffee_mud/Areas/interfaces/
com/planet_ink/coffee_mud/Behaviors/
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/Exits/interfaces/
com/planet_ink/coffee_mud/Items/Armor/
com/planet_ink/coffee_mud/Items/Basic/
com/planet_ink/coffee_mud/Items/MiscMagic/
com/planet_ink/coffee_mud/Items/Software/
com/planet_ink/coffee_mud/Items/Weapons/
com/planet_ink/coffee_mud/Libraries/interfaces/
com/planet_ink/coffee_mud/Locales/
com/planet_ink/coffee_mud/Locales/interfaces/
com/planet_ink/coffee_mud/MOBS/
com/planet_ink/coffee_mud/MOBS/interfaces/
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/application/
com/planet_ink/coffee_mud/core/smtp/
com/planet_ink/siplet/applet/
lib/
resources/examples/
resources/fakedb/
resources/quests/delivery/
resources/quests/diseased/
resources/quests/drowning/
resources/quests/gobwar/
resources/quests/holidays/
resources/quests/robbed/
resources/quests/smurfocide/
resources/quests/stolen/
resources/quests/templates/
resources/quests/treasurehunt/
resources/quests/vengeance/
web/
web/admin.templates/
web/admin/images/
web/pub.templates/
web/pub/images/mxp/
web/pub/sounds/
<HTML>
<HEAD>
<TITLE>Siplet</TITLE>
<LINK REL=StyleSheet HREF="term.css" TYPE="text/css">
	<link rel="coffeemud icon" href="../images/coffeemud.ico" >
<SCRIPT LANGUAGE=JavaScript src="floater.js"></SCRIPT>
<script language=JavaScript>
var allwindows=new Array();

function closeWindow()
{
	allwindows[currentWindow].closeWindow();
}

function addToWindow(s)
{
	allwindows[currentWindow].addToWindow(s);
}
function reconnect(s)
{
	allwindows[currentWindow].reconnect();
}
function sendData(me)
{
	allwindows[currentWindow].sendData(me);
}
function addToPrompt(x,att)
{
	allwindows[currentWindow].addToPrompt(x,att);
}
function goDefault(x)
{
	allwindows[currentWindow].goDefault(x);
}
var windowsOpen=0;
var currentWindow=0;
function openWindow()
{
	windowsOpen++;
	currentWindow=windowsOpen;
	var wname='dwindow'+windowsOpen;
    var thespan=document.getElementById("DWINDOW");
    thespan.innerHTML=thespan.innerHTML+getFrameHTML(wname);
    loadwindow('term.cmvp?wnum='+currentWindow,730,355,wname);
}

function rotateWindow()
{
	if(windowsOpen==0) return;
	var wname='dwindow'+currentWindow;
    var thespan=document.getElementById(wname);
    thespan.style.display='none';
    
	currentWindow++;
	if(currentWindow>windowsOpen) currentWindow=1;
	wname='dwindow'+currentWindow;
    thespan=document.getElementById(wname);
    thespan.style.display='';
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR=BLACK>
<DIV ID=DWINDOW NAME=DWINDOW>
</DIV>
<SCRIPT LANGUAGE=JavaScript>
window.onload=new Function('openWindow()');
</SCRIPT>
</BODY></HTML>