<!--
// siteURL = "demo.managemybiz.com";

function checkUncheckAll(theElement) {
  var theForm = theElement.form, z = 0;
  for(z=0; z<theForm.length;z++) {
    if(theForm[z].type == 'checkbox' && theForm[z].name != 'dothemall' && (!theForm[z].disabled) ) {
      theForm[z].checked = theElement.checked;
    }
  }
}

function Delete_This(new_location) {
  var aok   = window.confirm("Are you sure you want to do this?\n\nTo delete press OK, or else press CANCEL.   ")
  if (!aok) { return; }
    document.location = new_location;
    return;
  }

function InfoWindow (url, nWidth, nHeight) {
  var cToolBar = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,top=10,left=10,width=" + nWidth + ",height=" + nHeight
  var popupwin = window.open("info.asp?i=" + url, "info", cToolBar);
  }

function PopUpWindow (url, nWidth, nHeight) {
  var cToolBar = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=" + nWidth + ",height=" + nHeight
  var popupwin = window.open("a_help.asp?i=" + url, "help", cToolBar);
  }

function doless(id) {
  var areamore = document.getElementById("more"+id);
  var arealess = document.getElementById("feed"+id);
  areamore.style.display = 'inline';
  arealess.style.display = 'none';
}

function domore(id) {
  var areamore = document.getElementById("more"+id);
  var arealess = document.getElementById("feed"+id);
  areamore.style.display = 'none';
  arealess.style.display = 'inline';
}

function gettext(id) {
  document.getElementById(id).focus();
  document.getElementById(id).select();

  if (document.selection) {
    CopiedTxt     = document.selection.createRange();
    CopiedTxt.execCommand("Copy");
  }
}

function show(id) {
  var areamore = document.getElementById(id+"form");
  var arealess = document.getElementById(id+"click");
  areamore.style.display = 'inline';
  arealess.style.display = 'none';
}
//-->
