/
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/
var fileisnamed='floater.js'
var dragapproved=false;
var dragged=''
var minrestore=0
var saveWidth=0
var saveHeight=0
var saveTop=0
var saveLeft=0
var ie5=document.all&&document.getElementById
var ns6=document.getElementById&&!document.all
var topBound=5
var leftBound=5
var rightFudge=5
var bottomFudge=50
var rightBound=2000
var botBound=2000

function minLeft(){ return leftBound+(ns6?window.pageXOffset:iecompattest().scrollLeft);}
function minTop(){ return topBound+(ns6?window.pageYOffset:iecompattest().scrollTop);}

function curWinWidth(){ return ns6?window.innerWidth:iecompattest().clientWidth;}
function curWinHeight(){ return ns6?window.innerHeight:iecompattest().clientHeight;}

function iecompattest(){return (!window.opera && document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body;}

function drag_drop(e)
{
    if (ie5&&dragapproved&&event.button==1)
    {
        document.getElementById(dragged).style.left=tempx+event.clientX-offsetx+"px"
        document.getElementById(dragged).style.top=tempy+event.clientY-offsety+"px"
    }
    else 
    if (ns6&&dragapproved)
    {
        document.getElementById(dragged).style.left=tempx+e.clientX-offsetx+"px"
        document.getElementById(dragged).style.top=tempy+e.clientY-offsety+"px"
    }
}

function resize(e)
{
    if (ie5&&dragapproved&&event.button==1)
    {
        document.getElementById(dragged).style.width=tempx+event.clientX-offsetx+"px"
        document.getElementById(dragged).style.height=tempy+event.clientY-offsety+"px"
    }
    else 
    if (ns6&&dragapproved)
    {
        document.getElementById(dragged).style.width=tempx+e.clientX-offsetx+"px"
        document.getElementById(dragged).style.height=tempy+e.clientY-offsety+"px"
    }
    fixFont(dragged);
}

function stopdrag(wname,wnum)
{
    if(dragapproved)
    {
        dragapproved=false;
        document.onmousemove=null;
        document.onmouseup=null;
        var top=document.getElementById(wname).style.top;
        var left=document.getElementById(wname).style.left;
        if(parseInt(top) < minTop())
            document.getElementById(wname).style.top = minTop()+"px";
        if(parseInt(left) < minLeft())
            document.getElementById(wname).style.left = minLeft()+"px";
        document.getElementById(wname+"content").style.display=""
    }
}

function fixFont(wname)
{
    //var width = parseInt(document.getElementById(wname).style.width);
    //console.info(document.getElementById(wname+"frame").childNodes);
    //var oldSize = document.getElementById(wname+"frame").getElement('DOCUMENTSPAN').style.font-size;
    //console.info(oldSize);
    //document.getElementById(wname).getElementById('DOCUMENTSPAN').style.font-size = newSize;
}

function initializedrag(e,wname,wnum)
{
    front(wname,wnum);
    offsetx=ie5? event.clientX : e.clientX
    offsety=ie5? event.clientY : e.clientY
    document.getElementById(wname+"content").style.display="none";
    tempx=parseInt(document.getElementById(wname).style.left);
    tempy=parseInt(document.getElementById(wname).style.top);
    dragapproved=true
    dragged=wname
    if(offsety > tempy+parseInt(document.getElementById(wname).style.height))
    {
        tempx=parseInt(document.getElementById(wname).style.width);
        tempy=parseInt(document.getElementById(wname).style.height);
        document.onmousemove=resize;
    }
    else
        document.onmousemove=drag_drop;
    //document.onmouseout=function(){ stopdrag(wname,wnum); }
    document.onmouseup=function(){ stopdrag(wname,wnum); }
}

function loadwindow(url,width,height,wname,wnum)
{
    if (!ie5&&!ns6)
        window.open(url,"","width=width,height=height,scrollbars=1")
    else
    {
        document.getElementById(wname).style.display=''
        document.getElementById(wname).style.width=saveWidth=width+"px"
        document.getElementById(wname).style.height=saveHeight=height+"px"
        document.getElementById(wname).style.left=saveLeft=minLeft()+"px"
        document.getElementById(wname).style.top=saveTop=minTop()+"px"
        document.getElementById(wname+"frame").src=url
        top.bar.redColor(wnum);
        top.term.currentWindow=-1;
        front(wname,wnum);
    }
}

function maximize(wname,wnum)
{
    if (minrestore==0)
    {
        minrestore=1 //maximize window
        document.getElementById(wname+"max").setAttribute("src","/siplet/restore.gif")
        
        saveWidth=document.getElementById(wname).style.width
        saveHeight=document.getElementById(wname).style.height
        saveTop=document.getElementById(wname).style.top
        saveLeft=document.getElementById(wname).style.left
                
        document.getElementById(wname).style.left=minLeft()+"px"
        document.getElementById(wname).style.top=minTop()+"px"
        document.getElementById(wname).style.width=(curWinWidth()-minLeft()-rightFudge)+"px"
        document.getElementById(wname).style.height=(curWinHeight()-minTop()-bottomFudge)+"px"
        
    }
    else
    {
        minrestore=0 //restore window
        document.getElementById(wname+"max").setAttribute("src","/siplet/max.gif")
        document.getElementById(wname).style.width=saveWidth
        document.getElementById(wname).style.height=saveHeight
        document.getElementById(wname).style.left=saveLeft
        document.getElementById(wname).style.top=saveTop
    }
    document.getElementById(wname+"content").style.display="none";
}

function reposition(wname,wnum)
{
    maximize(wname);
    maximize(wname);
}

function closewindow(wname,wnum)
{
    var obj = alldivs[wnum];
    var obj2 = document.getElementById(wname);
    obj2.style.display="none";
    var obj3 = top.term.allapplets[wnum];
    obj3.disconnectFromURL();
    alldivs[wnum]=null;
    obj2.innerHTML = '';
    obj.innerHTML = '';
    for(var i=0;i<10;i++)
        if(top.term.alldivs[i] != null)
            top.term.currentWindow = i;
    top.bar.blackStatus(wnum);
    front('dwindow'+top.term.currentWindow,top.term.currentWindow);
}
function front(wname,wnum)
{
    if(top.term.currentWindow != wnum)
    {
        document.getElementById("EWINDOW"+wnum).style.zIndex=10;
        document.getElementById(wname).style.zIndex=10;
        for(var i=0;i<10;i++)
            if(i!=wnum)
            {
                var obj = alldivs[i];
                if(obj != null)
                    obj.style.zIndex=0;
                obj = document.getElementById("dwindow"+i);
                if(obj != null)
                    obj.style.zIndex=0;
            }
        top.term.currentWindow = wnum;
        if(top && top.entry && top.entry.boxFocus)
            top.entry.boxFocus();
        top.bar.greenIfLight(wnum);
        return false;
    }
    return true;
}
function hideit(wname,wnum)
{
    document.getElementById(wname).style.display="none"
}
function unhideit(wname,wnum)
{
    document.getElementById(wname).style.display=""
}

function getFrameHTML(wname,wnum)
{
    var s='<div id="'+wname+'" style="position:absolute;background-color:#EBEBEB;cursor:hand;left:0px;top:0px;display:none" onMousedown="initializedrag(event,\''+wname+'\','+wnum+')" onSelectStart="return false">';
    s+='<div id="'+wname+'bar" style="background-color:red">';
    s+='<table width=100% border=0 cellspacing=0 cellpadding=0 onclick="top.term.front(\''+wname+'\','+wnum+')"><tr>';
    s+='<td width=80% align=left>'
    s+='<div id="'+wname+'content" style="height:100%">';
    s+='<div id="'+wname+'namer" onMousedown="this.style.display=\'\';" style="background-color:red"></div>';
    s+='</td><td width=20% align=right>'
    s+='<img src="/siplet/max.gif" id="'+wname+'max" onClick="maximize(\''+wname+'\','+wnum+')">';
    s+='<img src="/siplet/close.gif" id="'+wname+'close" onClick="closewindow(\''+wname+'\','+wnum+')">';
    s+='</td></tr></table>'
    s+='</div>';
    s+='<div id="'+wname+'extracontent"></div>';
    s+='<iframe id="'+wname+'frame" src="" width=100% height=100%></iframe>';
    s+='</div>';
    s+='</div>';
    return s;
}