// JavaScript Document<script type="text/javascript">
	function hidefea(color1,color2)
	{
		
		
		document.getElementById("featured").style.display = "none";
		document.getElementById("requierment").style.display = "block";
		document.getElementById("ff").style.backgroundColor = color2;
		document.getElementById("rr").style.backgroundColor = color1;
		
		
	}
function showfea(color1,color2)
	{
		
		document.getElementById("featured").style.display = "block";
		document.getElementById("requierment").style.display = "none";
		document.getElementById("ff").style.backgroundColor = color1;
		document.getElementById("rr").style.backgroundColor = color2;
	}
	

function highlightrow(rowid,isshow)
{
	if (isshow == "1")
	{
		
	}
	else
	{
	
	}
}