<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<TITLE>DORserv test</TITLE>
<LINK rel="stylesheet" href="style.css" type="text/css">
<SCRIPT type="text/javascript" language="JavaScript">
var stayFolded=false;
var n = (document.layers) ? 1:0;
var ie = (document.all) ? 1:0;
var browser=((n || ie) && parseInt(navigator.appVersion)>=4);
function makeMenu(obj,nest)
{
nest=(!nest) ? '':'document.'+nest+'.'
this
.css
=(n
) ?
eval(nest
+'document.'+obj
):eval('document.all.'+obj
+'.style') this
.ref
=(n
) ?
eval(nest
+'document.'+obj
+'.document'):eval('document'); this
.height
=n?this
.ref
.height
:eval(obj
+'.offsetHeight') this.x=(n)? this.css.left:this.css.pixelLeft;this.y=(n)? this.css.top:this.css.pixelTop;
this.hideIt=b_hideIt;
this.showIt=b_showIt;
this.vis=b_vis;
this.moveIt=b_moveIt;
return this;
}
function b_showIt()
{
this.css.visibility="visible"
}
function b_hideIt()
{
this.css.visibility="hidden"
}
function b_vis()
{
if (this.css.visibility=="hidden" || this.css.visibility=="hide")
return true;
}
function b_moveIt(x,y)
{
this.x=x;
this.y=y;
this.css.left=this.x;
this.css.top=this.y;
}
function init()
{
oTop[0]=new makeMenu('DIVTop1','DIVCont')
oTop[1]=new makeMenu('DIVTop2','DIVCont')
oTop[2]=new makeMenu('DIVTop3','DIVCont')
oTop[3]=new makeMenu('DIVTop4','DIVCont')
oTop[4]=new makeMenu('DIVTop5','DIVCont')
oTop[5]=new makeMenu('DIVTop6','DIVCont')
oSub[0]=new makeMenu('DIVSub1','DIVCont.document.DIVTop1')
oSub[1]=new makeMenu('DIVSub2','DIVCont.document.DIVTop2')
oSub[2]=new makeMenu('DIVSub3','DIVCont.document.DIVTop3')
oSub[3]=new makeMenu('DIVSub4','DIVCont.document.DIVTop4')
oSub[4]=new makeMenu('DIVSub5','DIVCont.document.DIVTop5')
oSub[5]=new makeMenu('DIVSub6','DIVCont.document.DIVTop6')
for(i=0;i<oSub.length;i++)
{
oSub[i].hideIt()
}
for(i=1;i<oTop.length;i++)
{
oTop[i].moveIt(0,oTop[i-1].y+oTop[i-1].height)
}
}
function menu(num)
{
if(browser)
{
if(!stayFolded)
{
for(i=0;i<oSub.length;i++)
{
if(i!=num) oSub[i].hideIt()
}
for(i=1;i<oTop.length;i++)
{
oTop[i].moveIt(0,oTop[i-1].y+oTop[i-1].height)
}
}
oSub[num].vis()?oSub[num].showIt():oSub[num].hideIt()
for(i=1;i<oTop.length;i++)
{
if(!oSub[i-1].vis()) oTop[i].moveIt(0,oTop[i-1].y+oTop[i-1].height+oSub[i-1].height)
else oTop[i].moveIt(0,oTop[i-1].y+oTop[i-1].height)
}
}
}
if(browser)
onload=init();
</SCRIPT>
</HEAD>
<BODY>
<TABLE width="100%" height="100%" border="4" summary="menu" cellspacing="0" cellpadding="5">
<TR width="100%" height="100%" align="left" valign="top">
<TD width="100%" class="Style3">
<B>Menu</B><BR><BR>
<DIV id="DIVCont">
<DIV id="DIVTop1" class="clTop">
<A href="" onClick="menu(0); return false">Selection options</A><BR>
<DIV id="DIVSub1" class="clSub">
<A href="">Database selection</A><BR>
<A href="">Data set selection</A><BR>
<A href="">Material selection</A><BR>
</DIV>
<BR>
</DIV>
<DIV id="DIVTop2" class="clTop">
<A href="" onClick="menu(1); return false" class="clMain">Material search options</A><BR>
<DIV id="DIVSub2" class="clSub">
<A href="" class="clSubb">-Sublink 1</A><BR>
<A href="" class="clSubb">-Sublink 2</A><BR>
</DIV>
<BR>
</DIV>
<DIV id="DIVTop3" class="clTop">
<A href="" onClick="menu(2); return false" class="clMain">Data input/modification</A><BR>
<DIV id="DIVSub3" class="clSub">
<A href="" class="clSubb">-Sublink 1</A><BR>
<A href="" class="clSubb">-Sublink 2</A><BR>
</DIV>
<BR>
</DIV>
<DIV id="DIVTop4" class="clTop">
<A href
="" onClick
="menu(3); return false" class="clMain">Data
print and report
</A
><BR
> <DIV id="DIVSub4" class="clSub">
<A href="" class="clSubb">2D plots</A><BR>
<A href="" class="clSubb">Word/Excel outputs</A><BR>
</DIV>
<BR>
</DIV>
<DIV id="DIVTop5" class="clTop">
<A href="" onClick="menu(4); return false" class="clMain">Database administration</A><BR>
<DIV id="DIVSub5" class="clSub">
<A href="" class="clSubb">Backup</A><BR>
<A href="" class="clSubb">Restore</A><BR>
</DIV>
<BR>
</DIV>
<DIV id="DIVTop6" class="clTop">
<A href="" onClick="menu(5); return false" class="clMain">Data set manipulation</A><BR>
<DIV id="DIVSub6" class="clSub">
<A href="" class="clSubb">Merge</A><BR>
<A href="" class="clSubb">Split data sets</A><BR>
<A href="" class="clSubb">Unit conversion</A><BR>
</DIV>
<BR>
</DIV>
</DIV>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>