function Swap(prefix, id)
   {
    if ($("#"+prefix+id).css("display") == "none")
     {
      $("dd[@id^='"+prefix+"']").animate({ "height": "hide", "opacity": "hide" }, "normal");
      $("span[@id^='title_"+prefix+"']").each( function() {
        if (this.className.indexOf("_", 0) == -1 ) this.className = this.className+"_active";
      });


      $("#"+prefix+id).animate({ "height": "show", "opacity": "show" }, "normal");
      span_class = $("#title_"+prefix+id).attr("class");
      pos = span_class.indexOf("_", 0);

      if (pos > -1) $("#title_"+prefix+id).attr("class", span_class.slice(0, pos));
     }
    else
     {
      $("#"+prefix+id).animate({ "height": "hide", "opacity": "hide" }, "normal");
      span_class = $("#title_"+prefix+id).attr("class");
      $("#title_"+prefix+id).attr("class", span_class+"_active");
     }
   }

function popupWin(link, winTitle)
 {
  posCode = '';
  winW = 600;
  winH = 600;

  Window = window.open(link,'_blank','menubar=no,toolbar=no,scrollbars=yes,status=no,top=150,left=150,width='+winW+',height='+winH+','+posCode);
 }

