//TOGGLE SWAP SHOW HIDE DIVS
function toggle_div(id) {
	var the_target = document.getElementById(id);
  
	if (the_target.style.display == 'none') {
		the_target.style.display = 'block';
  	}
	else {
		the_target.style.display = 'none';
 	}
}

function swap_divs(id1, id2) {
	var id1 = document.getElementById(id1);
	var id2 = document.getElementById(id2);
  
	if (id1.style.display == 'none') {
		id1.style.display = 'block';
  	}
	else {
		id1.style.display = 'none';
 	}

	if (id2.style.display == 'none') {
		id2.style.display = 'block';
  	}
	else {
		id2.style.display = 'none';
 	}
}

function show_div(id) {
	var the_target = document.getElementById(id);
	the_target.style.display = 'block';
}

function hide_div(id) {
	var the_target = document.getElementById(id);
	the_target.style.display = 'none';
}


//JUMP MENU
function jump(choice) {
	var the_url = choice.options[choice.selectedIndex].value;
	
	if (the_url) {
		location.href = the_url;
	}
}