var str=Right(document.location.hostname, 18);

function SetTitle() {
  if (str=="baileybrothers.com") {
    document.title ="Bailey Brothers Music Company";
  } else if (str=="wholesalemusic.com") {
    document.title ="Wholesale Music";
  }
}

function GetCompanyName() {
  if (str=="baileybrothers.com") {
    document.write("Bailey Brothers Music Company");
  } else if (str=="wholesalemusic.com") {
    document.write("Wholesale Music");
  }
}

function GetCompanyURL() {
  if (str=="baileybrothers.com") {
    document.write("<a href='shop.baileybrothers.com'>shop.baileybrothers.com</a>");
  } else if (str=="wholesalemusic.com") {
    document.write("<a href='www.wholesalemusic.com'>www.wholesalemusic.com</a>");
  }
}

function GetEmailLink() {
  if (str=="baileybrothers.com") {
    document.write("<a href='sales@baileybrothers.com'>sales@baileybrothers.com</a>");
  } else if (str=="wholesalemusic.com") {
    document.write("<a href='sales@wholesalemusic.com'>sales@wholesalemusic.com</a>");
  }
}

function Right(str, n){ 
  if (n <= 0) 
    return ""; 
  else if (n > String(str).length) 
    return str; 
  else { 
    var iLen = String(str).length; 
    return String(str).substring(iLen, iLen - n); 
  } 
}
