<! Doctype HTML public "-// W3C // dtd xhtml 1.0 transitional // en" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<HTML xmlns = "http://www.w3.org/1999/xhtml">
<Head>
<Meta http-equiv = "Content-Type" content = "text/html; charset = gb2312"/>
<Title> untitled document </title>
</Head>
<SCRIPT type = "text/JavaScript">
Function hideall ()
{
For (I = 0; I <myid. length; I ++)
{
Myid [I]. style. Display = "NONE ";
}
}
Function show (Num)
{
If (myid [num]. style. Display = "NONE ")
{
Hideall ();
Myid [num]. style. Display = "inline ";
}
Else
{
Myid [num]. style. Display = "NONE"
}
}
</SCRIPT>
<Body>
<A href = "#" onclick = "show (0)"> personnel management </a> <br/>
<Div id = "myid" style = "display: none"> & nbsp employee information <br> </div>
<A href = "#" onclick = "show (1)"> contract management </a> <br/>
<Div id = "myid" style = "display: none"> & nbsp contract information <br/> </div>
<A href = "#" onclick = "show (2)"> resignation management </a> <br/>
<Div id = "myid" style = "display: none"> & nbsp resignation Information </div>
</Body>
</Html>