function showHide( boxID, buttonID ){
    if( document.getElementById( boxID ).style.display=="none")
    {
	document.getElementById( boxID ).style.display="";
	document.getElementById( buttonID ).style.display="none";
    } else {
	document.getElementById( boxID ).style.display="none";
	document.getElementById( buttonID ).style.display="";
    }
}
