<!--
var url = "wes-state.com" //GLOBAL

function business_contact1() {
  var who1 = "shipping";
  document.write("<a href=\"mailto");
  document.write(":" + who1 + "@");
  document.write(url + "\">" + who1 + "@" + url + "<\/a>");
}
function business_contact2() {
  var who2 = "broker";
  document.write("<a href=\"mailto");
  document.write(":" + who2 + "@");
  document.write(url + "\">" + who2 + "@" + url + "<\/a>");
}
function business_contact3() {
  var who3 = "info";
  document.write("<a href=\"mailto");
  document.write(":" + who3 + "@");
  document.write(url + "\">" + who3 + "@" + url + "<\/a>");
}
function business_contact4() {
  var who4 = "info";
  var text4 = "email";
  document.write("<a href=\"mailto");
  document.write(":" + who4 + "@");
  document.write(url + "\">" + text4 + "<\/a>");
}
-->