var id = '';
var oldId = id;

var id2 = '';
var oldId2 = id2;

function show(id){
	
	if ( oldId != id ) {
		if ( oldId ){
			document.getElementById(oldId).style.display = 'none';
			document.getElementById(oldId+'_link').className = '';
		}
		if ( oldId2 ){
			document.getElementById(oldId2).style.display = 'none';
			document.getElementById(oldId2+'_link').className = '';			
		}
		document.getElementById(id).style.display = 'block';
		document.getElementById(id+'_link').className = 'subnLink';
	}
	oldId=id;
	
}

function show2(id2){
	
	if ( oldId2 != id2 ) {
		if ( oldId2 ){
			document.getElementById(oldId2).style.display = 'none';
			document.getElementById(oldId2+'_link').className = '';
		}
		document.getElementById(id2).style.display = 'block';
		document.getElementById(id2+'_link').className = 'subnLink';
	}
	oldId2=id2;
	
}
