// to tell whether end customer or dealers version is used
function IsCustomer()
{
  return true; // *************
}

function IsDealer()
{
  return false;
}

function IsOnline()
{
  return true;
}

function IsOffline()
{
  return false;
}