﻿<!--
function ShowHide(targetName, targetName2) {
    targetName = String(targetName);
    targetName2 = String(targetName2);
	if( document.getElementsByName ) {
	    
		target = document.getElementsByName(targetName);
		target2 = document.getElementsByName(targetName2);
	} else if( document.all ) {
		target = document.all[targetName];
		target2 = document.all[targetName2];
	}

    targetImg = document.getElementById(targetName + '_img');
	
	if( target ) {
        for (i = 0; i < target.length; i++)
	        {	    
		        if( target[i].style.display == "none" ) {
			        target[i].style.display = "inline";
			        
			        if (targetImg) {
			            targetImg.src = 'Images/pic_minus.gif'
			        }
			        
			        if (target2[i]) {
			            target2[i].style.fontWeight = 'bold'
			        }
		        } else {
			        target[i].style.display = "none";

			        if (targetImg) {
			            targetImg.src = 'Images/pic_plus.gif'
			        }
			        
			        if (target2[i]) {
			            target2[i].style.fontWeight = 'normal'
			        }
		        }
		    }
	}
	window.focus();
}


//-->