// JavaScript Document

var div_array = new Array("d1", "d2", "d3","d4","d5", "d6", "d7","d8","d9", "d10", "d11","d12","d13", "d14","d15","d16","d17","d18","d19","d20","d21","d22","d23","d24","d25","d26","fashwebs","d27");




function changeDiv(the_div, the_change)
{

if (document.all&&document.readyState=="complete"){

    if (document.all)
    {
        div_string = "window.document.all." + the_div + ".style";
    } 

if (document.all)
{var theX= window.event.x;

var theY= window.event.y;}





the_div = eval(div_string);
the_div.visibility = the_change;

if (document.all){
the_div.left=theX + 0 +document.body.scrollLeft - 5;
the_div.top=theY+ 15 + document.body.scrollTop - 5;}


}

 if (document.layers) {
        div_string = "window.document." + the_div;the_div = eval(div_string);
the_div.visibility = the_change;
    } 
}

function closeAll()
{
    for (var loop=0; loop < div_array.length; loop++)
    {
       changeDiv(div_array[loop], "hidden");
    }


}
