function HLGRD(TheCell)
{
	for(i=1;i<20;i++)
	{
		objname = TheCell + '[' + i + ']';
		if (document.getElementById(objname))
		{
			document.getElementById(objname).className = document.getElementById(objname).className + "HL";

		}
	}
}
function DEHLGRD(TheCell)
{
	for(i =1;i<20;i++)
	{
		objname = TheCell + '[' + i + ']';
		if (document.getElementById(objname))
		{
			classstr = document.getElementById(objname).className;
			newclass = document.getElementById(objname).className.substr(0,2);
			document.getElementById(objname).className = newclass;
		}
	}
}

function PopUpHWND(Path)
{
	var NewHWND = window.open(Path, "CommnetHWND", "width=400,height=400,status=yes,scrollbars=no,resizable=no");
}