﻿
		$ = function(id) {
			return document.getElementById(id);
		}
		
		function ShowMe(ElementId)
		{
		    $(ElementId).style.visibility = 'visible';
		    $(ElementId).style.display = 'block';
		}
		
		function HideMe(ElementId)
		{
		    $(ElementId).style.visibility = 'hidden';
		    $(ElementId).style.display = 'none';
		}

		function SetElementWidth(ElementId, width) {
		    $(ElementId).style.width = width;
		}



