function switchPane (oDst,oSrc) {

 document.getElementById(oDst).style.display = 'block';
 document.getElementById(oSrc).style.display = 'none';
 return false;

}
