b=document;function ShowIssues(liSourceID){if(b.CurrentIssues){b.CurrentIssues.style.display="none"}b.CurrentIssues=b.getElementById("Source"+liSourceID+"_IssuesDiv");if(b.CurrentIssues){b.CurrentIssues.style.display="block"}}

	function resizeTables(el, maxTableSize, resizeTo)
	{
		//alert('Starting Div ' + el.nodeName + ':' +  el.id);
		//alert('Number of Children is ' + el.children.length);
		
		for (var loop=0; loop < el.children.length; loop++)
		{
			//alert('Child Node ' + el.children[loop].nodeName + ':' +  el.children[loop].id);
			if (el.children[loop].nodeName == "TABLE")
			{
				//alert('name: ' + el.children[loop].name);
				//alert('id: ' + el.children[loop].id);
				//alert('style: ' + el.children[loop].style);
				//alert('width: ' + el.children[loop].width);
				if(el.children[loop].width > maxTableSize)
				{
					//el.children[loop].width = resizeTo;
					//alert('Table Resized too ' + el.children[loop].width);
				}
			}
			
			//Now recurse through it
			resizeTables(el.children[loop], maxTableSize, resizeTo);
		}
		//alert('Ending Div ' + el.nodeName + ':' +  el.id);
	}