function toggle( showCtrl, hideCtrl ) {
	show( showCtrl );
	hide( hideCtrl );
}

function show( ctrl ) {
	ctrl.style.display = "";
}
function hide( ctrl ) {
	ctrl.style.display = "none";
}
