function swapDisplay(strSwap,strThis) {

	document.getElementById(strSwap).style.display = '';

	document.getElementById(strThis).style.display = 'none';

}
