// JavaScript Document



function highLight(obj,color)
{
	obj.style.background = color;
}

function normalLight(obj,color)
{
	obj.style.background = color;
}


