// show_hide.js
function show_hide(inShowItems, inHideItems){
	//alert(inShowItems); alert(inHideItems);
	
	if(inShowItems != ''){
		var sItems = inShowItems.split(",");
		for (var i = 0; i < sItems.length; i++)	{ document.getElementById(sItems[i]).style.display=''; }
	}
	
	if(inHideItems != ''){
		var hItems = inHideItems.split(",");
		for (var j = 0; j < hItems.length; j++)	{ document.getElementById(hItems[j]).style.display='none'; }		
	}
}