function SLT_DE(cell)
{
	cell.className = "de";
}
  
function SLT_HL(cell)
{
	cell.className = "hl";
}

// Hide the javascript warning
function SLT_HideJavaScriptWarning()
{
	// Added the or condition so that the script is compatible with all browsers for Defect : 11033 and Incident : INC105896
	if(document.all || document.getElementById)
	{
	
		var elm = JSW;
		elm.style.visibility = "hidden";
		elm.style.position = "absolute";
	}
}
