var ActivateCode = null;

function mg(txt) {
   window.status = txt;
}

function enterCode(num) {

  if (ActivateCode == null)
  ActivateCode = num;
  else
  ActivateCode += num;


  if (ActivateCode.length > 6)
   ActivateCode = num;

checkCode();
}

function checkCode() {


if (ActivateCode.length == 6) {
var tspURL = "http://www.smbhq.com/tsp" + ActivateCode;
window.location=tspURL;
}



}


