function showHideGraphic(theBlock,pngName){
	if(document.getElementById){
		var theblock = document.getElementById(theBlock);
	} else if (document.all){
		var theblock = document.theBlock;
	}
	if(theblock) theblock.style.backgroundImage = "url(layout\/graphics\/"+pngName+".png)";
}
