
// JScript source code

	function boldText(e)
	{
		if (!document.all) 
			window.setCursor("pointer");
		else
			e.style.cursor = "hand";
			
		e.style.fontFamily = "arial";
		//e.style.textDecoration='underline';
		e.style.backgroundColor = "#728cb1";
		//e.style.backgroundColor = "#ffffff";
		
		//e.style.backgroundColor = "#728cb1";
		//e.style.color = "#ff821e"
	}
	
	function unboldText(e)
	{
		if (!document.all)
			window.setCursor("auto");
		else
			e.style.cursor = "default";
			
		e.style.fontFamily = "arial";
		//e.style.textDecoration='none';
		e.style.backgroundColor = "#000000";
		//e.style.backgroundColor = "#728cb1";
		//e.style.color = "#ffffff"
		
	}

	function navigateTo(e)
	{
	
		var goToPage;

		e.style.backgroundColor = "#728cb1";
		
		goToPage = e.id + ".aspx";
		ap = e.id;
		
		if(document.all){
			window.navigate(goToPage);
		}
		else {
			window.location = goToPage;
			//alert("detected NN6");
		}
		
	}
		
// Footer		
		
	function unboldTextF(e)
	{
		if (!document.all)
			window.setCursor("auto");
		else
			e.style.cursor = "default";
			
		e.style.color = "#ffffff";
		e.style.fontWeight = "normal";
		
		e.style.fontFamily = "arial";
		//e.style.backgroundColor = "#fe000b";
	}

	function boldTextF(e)
	{
		if (!document.all) 
			window.setCursor("pointer");
		else
			e.style.cursor = "hand";
			
		e.style.fontWeight = "normal";
		
		e.style.color = "#ff821e";
		e.style.fontFamily = "arial";
		//e.style.backgroundColor = "#ffffff";
	}

	function shadow(e)
	{	
		var srcArray;
		var str;
		str = e.src;
		srcArray = str.split(/.gif/);
		e.src = srcArray[0] + "!.gif";
	}
	function unShadow(e)
	{
		e.src = e.src.split(/!.gif/)[0] + ".gif";
	}
	
	function displayName(e)
	{
		alert(e.id);
		
	}	