var index = -1;

function show( divshow ) {
	if ( index != -1 ) {
			divindex = document.getElementById( index );
			divindex.style.display = "none";
	}

	div = document.getElementById( divshow );
	
	if ( index == divshow ){
			div.style.display = "none";
			index = -1;
	} else {
			index = div.id;
			div.style.display = "";
	}
		
	return false;
}

