function on(a){
	if(document.getElementById(a) != null){
		document.getElementById(a).style.display = 'block';
	}
	return true;
}

function off(a){
	if(document.getElementById(a) != null){
		document.getElementById(a).style.display = 'none';
	}
	return true;
}

function swap(b, a){
	on(b);
	off(a);
	return true;
}

