



function inCell(cell, newcolor) 
{
if (!cell.contains(event.fromElement)) {
cell.bgColor = newcolor;
wed.bgColor = "white";
over_checker='on';
}
}

function outCell(cell, newcolor) {
if (!cell.contains(event.toElement)) {
cell.bgColor = newcolor;
over_checker='off';
setTimeout ("off1()", 700);
}
}

function off1()
{
   if (over_checker=='off')
   {
      wed.bgColor = '#999999';
   }
}

function gotoPage(thePage)
{
document.location = thePage;
}

function rollover(name,image)
{
document.images[name].src = 'images/' + image;
}