function chgSCO () {
  // if (document.body.bgColor == "#ff0000")  // red
  btn=document.getElementById("chgSCO");
  a=document.getElementById("SCO");
  if (btn.value == "Linux forever!")
  {
  	btn.value = "Just git 'er done!";
	a.href="http://www.groklaw.net/staticpages/index.php?page=2006061302494935";
	a.innerHTML = "Switch to Linux";
  }
  else
  {
  	btn.value = "Linux forever!";
	a.href = "http://partners.sco.com/partner/locator/region.jsp";
	a.innerHTML="Authorized SCO Developer";
  }
  return false;
}

window.start = function () {
  // if (document.domain == "dvorahbeads.biz")
  // {
  // 	window.location = "http://dvorahbeads.biz/bee";
  // }
  x=document.getElementById("chgSCO");
  x.onclick = chgSCO;
  // x.onmouseover = chgColor;
  // x.onmouseout = unchgColor;
}
window.onload = window.start;

