  function SetBoxpText($show) {
    var X = document.getElementById("boxp_text");
    var Y = document.getElementById("title_" + $show);

    X.innerHTML = Y.innerHTML;

    $hide = "fb";
    if ($show == "fb") $hide = "fb";
    with (document.getElementById("title_" + $hide).style) {
      backgroundColor = "#DFDFDF";
      color = "black";
    }
    $hide = "nk";
    if ($show == "nk") $hide = "nk";
    with (document.getElementById("title_" + $hide).style) {
      backgroundColor = "#DFDFDF";
      color = "black";
    }
    with (document.getElementById("title_" + $show).style) {
	  backgroundColor = "#EFEFEF";
      color = "black";
    }
    return true;
  }


