<!--
function externalLinks() {
/*Function to remove the need for the target attribute in XHTML, works well enough, but you cannot set the windows attrib's*/
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") &&
		anchor.getAttribute("rel") == "external")
		anchor.target = "_blank";
	}
} function hideDivs(exempt){
    if (!document.getElementsByTagName) {
      return null;
    }
    if (!exempt) exempt = "";
    var divs = document.getElementsByTagName("div");
    for(var i=0; i < divs.length; i++){
      var div = divs[i];
      var id = div.id;
      if ((id != "sitewrapper") && (id != "sectionone") && (id != "smallnav") && (id != "menusystem") && (id != "content") && (id != "img-decleft") && (id != "img-decright") && (id != "sidebar") && (id != "footer") && (id != "topsection") && (id != exempt)){
        div.className = "hiddenitem";
      }
    }
  }
  
  function fixLinks(){
    if (!document.getElementsByTagName) {
      return null;
    }
    var anchors = document.getElementsByTagName("a");
    for(var i=0; i < anchors.length; i++){
      var a = anchors[i];
      var href = a.href;
      if (href.indexOf("#sectionone") != -1) {
        a.className = "printnav";
      } else if ((href.indexOf("#") != -1) && (href.indexOf("header") == -1)){
        var index = href.indexOf("#") + 1;
        href = "javascript:show('" +
          href.substring(index) + "');";
        a.setAttribute("href",href);
      }
    }
  }
  
  function show(what){
    if (!document.getElementById) {
      return null;
    }
    showWhat = document.getElementById(what);
    showWhat.className = "";
    hideDivs(what);
  }
window.onload = function() {
	window.defaultStatus='Landbridge Shipping Limited.'
	externalLinks
    hideDivs("sone");
	fixLinks();
}
-->