// JavaScript Document

var subdiv_array = new Array("sublink1","sublink2","sublink3","sublink4","sublink5");

function ViewDiv(the_sub, the_subchange)
{

if (document.all&&document.readyState=="complete"){

    if (document.all)
    {
        subdiv_string = "window.document.all." + the_sub + ".style";
    } 

if (document.all)
{var thesubX= window.event.x;

var thesubY= window.event.y;}

the_sub = eval(subdiv_string);
the_sub.visibility = the_subchange;

if (document.all){
the_sub.left=thesubX - 50 + document.body.scrollLeft;
the_sub.top=thesubY + 0 + document.body.scrollTop;}


}

 if (document.layers) {
        subdiv_string= "window.document." + the_sub;the_sub = eval(subdiv_string);
the_sub.visibility = the_subchange;
    } 
}
function closesubAll()
{
    for (var subloop=0; subloop < subdiv_array.length; subloop++)
    {
       ViewDiv(subdiv_array[subloop], "hidden");
    }


}

