<!--

	function findIt(g){
		if(document.getElementById){
			f = document.getElementById(g);
		} else if(document.all){
			f = document.all[g];
		} else if(document.layers) {
			f = document[g];
		} else {
			f = null;
		}
		return f;
	}

	function showSub(n){
		for(var i=1; i<5; i++){
			a = findIt('link'+i);
			b = findIt('sub'+i);
			a.className = (i == n)? 'curlink' : '';
			b.style.display = (i == n)? 'block' : 'none';
		}
	}
	
	function showEdm1(){
		child1 = window.open('edm1.htm', 'edm1', 'width=595,height=550,scrollbars=yes');
		child1.focus();
	}
	
	function showEdm2(){
		child2 = window.open('edm2.htm', 'edm2', 'width=624,height=550,scrollbars=yes');
		child2.focus();
	}

//-->