function check()
{
  testStr = location.href;
  testLoc = 0;

  findStr = "worx";
  testLoc = testStr.indexOf(findStr,0);

  if (testLoc != -1) {
    location.href = 'http://www.graceworx.wordpress.com';
    return;
  }

  testStr = location.href;
  testLoc = 0;

  findStr = "lenmarchemical";
  testLoc = testStr.indexOf(findStr,0);

  if (testLoc != -1) {
    location.href = 'http://www.lenmarchemical.com/lenmar/';
    return;
  }
  

  testStr = location.href;
  testLoc = 0;

  findStr = "dynasty";
  testLoc = testStr.indexOf(findStr,0);

  if (testLoc != -1) {
    location.href = 'http://www.dynastyinsider.com/dyna/index.html';
    return;
  }


  testStr = location.href;
  testLoc = 0;

  findStr = "n1ne";
  testLoc = testStr.indexOf(findStr,0);

  if (testLoc != -1) {
    location.href = 'http://www.gracedalton.org/n1ne/';
    return;
  }

  testStr = location.href;
  testLoc = 0;

  findStr = "lenmar";
  testLoc = testStr.indexOf(findStr,0);

  if (testLoc != -1) {
    location.href = 'http://www.lenmarchemical.com/lenmar/';
    return;
  }


  testStr = location.href;
  testLoc = 0;

  findStr = "medical";
  testLoc = testStr.indexOf(findStr,0);

  if (testLoc != -1) {
    location.href = 'http://www.gracedalton.org/medical/';
    return;
  }

  testStr = location.href;
  testLoc = 0;

  findStr = "sermon";
  testLoc = testStr.indexOf(findStr,0);

  if (testLoc != -1) {
    return;
  }

  location.href = 'http://www.gracedalton.org/GPC2009/';
  return;
}
