function ShowHide( elemID )
	{
		var elem = document.getElementById( elemID );
		if( elem.style.position != 'absolute' )
		{
			elem.style.position = 'absolute';
			elem.style.left = '-4000px';
		}
		else
		{
			elem.style.position = 'relative';
			elem.style.left = '0px';
		}
	}
