function chgcolor(mobject)
	{
		window.status = "Click to Explore"
		mobject.style.backgroundColor = "#00ffcc"
		//mobject.style.backgroundColor = "lightskyblue"
		//mobject.style.Color = "black"
	}
function chgcolor1(mobject)
	{
		window.status = "Click to Explore"
		//mobject.style.backgroundColor = "#00ffcc"
		//mobject.style.backgroundColor = "lightskyblue"
		mobject.style.color = "black"
	}	
function orgcolor(mobject)
	{
		window.status = ""
		mobject.style.backgroundColor = ""
		mobject.style.Color = ""
		// mobject.backgroundColor = ""
	}
	
function funsearch()
	{
		//alert("Hello")
		lcSearchValue = document.searchform.text1.value ;
		if (lcSearchValue != "")
		{
			navstr = "sresults.asp?SEARCHVALUE="+lcSearchValue ;
			document.location.href = navstr
		}	
		else
		{
			alert("Please enter a Search value");
		}
		//alert(navstr);
		
	}	
	

