function HideImages()
		{
			var image          = null;
			var imageLength    = null;
			var imageList      = null;
			var td	           = null;
			var tdListLength   = null;
			var tdList		   = null;

			//Hide All Images
			imageList    = document.getElementsByTagName('img');
			imageLength  = imageList.length;			
			// Loop through all the images
			for(var j = 0; j < imageLength; j++)
			{
				image = imageList[j];
				// Hide Image: TO Hide images remove the comments from the bellow line
				//image.style.display='none';				
			}

			//Hide all background images
			tdList    = document.getElementsByTagName('td');
			tdListLength  = tdList.length;	
			// Loop through all the images
			for(var j = 0; j < tdListLength; j++)
			{
				td = tdList[j];
				// Hide bg Image: TO Hide background images remove the comments from the bellow line
				td.style.background = 'none';				
			}
		}
