
	function showTEXT( spanID, actID)
	{
		if( actID == "0")
		{
			document.getElementById( spanID ).style.display="block";
		}
		else
		{
			document.getElementById( spanID ).style.display="none";
		}
/*
}
function changeVisibility()
{
document.getElementById("imgbox2").style.visibility="hidden";
}
function resetElement()
{
document.getElementById("imgbox1").style.display="block";
document.getElementById("imgbox2").style.visibility="visible";
*/		
		/*
		var spanObj = document.getElementsByTagName( "span" );
		
		for(var i=0; i<spanObj.length;i++)
		{
			
			if( spanObj[i].id == spanID )
			{
				if( actID == "0")
				{
					'spanObj[i].style.visibility = "visible";

					spanObj[i].style.display = "block";
				}
				else
				{
					'spanObj[i].style.visibility = "hidden";

					spanObj[i].style.display = "none";
				}

				//alert(spanID);
			}
		}
		*/

	}

	function fontResize(fontSize, caller)
	{
		var spanObj = document.getElementsByTagName( "span" );

		for(var i=0; i<spanObj.length;i++)
		{
			if( spanObj[i].className == "h01" )
			{
				spanObj[i].style.fontSize = (fontSize + 25) + "%";
			}
			else if( spanObj[i].className == "cnttext" || spanObj[i].className == "cntstrong" ||  spanObj[i].className == "cntblur" || spanObj[i].className == "cntstronghighlight" || 
			spanObj[i].className == "JobCrdFld" || spanObj[i].className == "5dayRed" || spanObj[i].className == "5dayBlue"	/*|| spanObj[i].className == "smallstrong" || spanObj[i].className == "small"*/ )
			{
				spanObj[i].style.fontSize = fontSize + "%";
			}
			else{}
		}
		
		var aObj = document.getElementsByTagName( "a" );
		for(var i=0; i<aObj.length;i++)
		{
			if( aObj[i].className == "cntstrong" || aObj[i].className == "copylink_bold" || aObj[i].className == "cnttext" || aObj[i].className == "cntstrong_ez" || aObj[i].className == "cntstrong_gz" ||
			aObj[i].className == "cntstrong_jz" || aObj[i].className == "cntstrong_uz" || aObj[i].className == "copylink_bold_jsk" || aObj[i].className == "copylink_bold_emp")
			{
				aObj[i].style.fontSize = fontSize + "%";	
			}
		}

		var statusArray = new Array( "size1", "size2", "size3" );
		for(var i=0; i<statusArray.length; i++)
		{
			var sizeObj = document.getElementById( statusArray[i] );
			sizeObj.style.textDecoration = "none";
			sizeObj.style.backgroundColor = ""
			if( caller == statusArray[i] )
			{
				sizeObj.style.textDecoration = "underline";
				if(caller != "size1")
				{
					sizeObj.style.backgroundColor = "#AAAAAA"
				}
			}
			else
			{
				sizeObj.style.textDecoration = "none";
				sizeObj.style.backgroundColor = "";
			}
		}
	}

