//-- FILENAME: checkTrader.js --//
//-- $Name: Release_7-8 $ --//
//-- $Header: /CVSRepositories/TSI_WebSite/JS_Repository/checkTrader.js,v 1.4 2011/01/13 17:17:10 TSI Exp $ --//
//--                  Copyright 2004 - 2011 TurnSignal Inc. All Rights Reserved.                            --//
//--========================================================================================================--//
function checkTrader(FormName) {
  //alert("Entering checkTrader().......................");
  if (FormName.TraderType[0].checked) {
    FormName.Company.value = "Individuals Leave Blank";
    FormName.Company.disabled = true;
  } else {
    FormName.Company.value = "";
    FormName.Company.disabled = false;
    alert ("Professional/Corporate Users Must Provide License and Company Information.");
  }
  location.hash = "pagebot";
  //alert(".......................checkTrader()Returning");
  return;
}  //end of checkTrader()
