// JavaScript Document

var color2 = "#CCCCCC" ;
var color4 = "#f3f3f3" ;
var color5 = "#c0cef8" ;

function changecolor(id,mouse)
{
if(mouse=="on")
{
document.getElementById(id).style.border = '1px #999999 solid';
document.getElementById(id).style.backgroundColor=color2;
}

if(mouse=="off")
{
document.getElementById(id).style.border = '1px #999999 solid';
document.getElementById(id).style.backgroundColor=color4;
document.getElementById(id).style.borderColor = color4;

}
}
function bgcolor(id,mouse)
{
if(mouse=="on")
{
document.getElementById(id).style.border = '1px #999999 solid';
document.getElementById(id).style.backgroundColor="#ddddff";

}
if(mouse=="off")
{
document.getElementById(id).style.border = '1px #999999 solid';
document.getElementById(id).style.backgroundColor=color5;
document.getElementById(id).style.borderColor = color5;
}
}
