<!--

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_closeBrWindow(theURL,winName)
		{window.close(theURL,winName);
}

function Touch(myGraphic){
  x = document.getElementById(myGraphic).src;
  x = x.split('/');
  i = x.length-1;
  y = x[i];
  if (y == 'plus.gif'){
  	document.getElementById(myGraphic).src = 'img/minus.gif';
  } else {
    document.getElementById(myGraphic).src = 'img/plus.gif';
  }
}

menu_status = new Array();
function showHide(theid){
  if (document.getElementById) {
  	var switch_id = document.getElementById(theid);
  	if(menu_status[theid] != 'show'){
      switch_id.className = 'show';
      menu_status[theid] = 'show';
  	}else{
  	  switch_id.className = 'hide';
  	  menu_status[theid] = 'hide';
  	}
  }
}

// '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
// Flash Object

			var flashvars = {};
			var params = {
				base: "flash/",
                        wmode: "transparent"
			};
			var attributes = {};
			swfobject.embedSWF("flash/rotator.swf", "imagerotatoralt", "413", "271", "9.0.0", false, flashvars, params, attributes);

			var flashvars = {};
			var params = {
                        menu: "false",
                        wmode: "transparent"
                };
			var attributes = {};
			swfobject.embedSWF("flash/header.swf", "flashheader2", "766", "164", "9.0.0", false, flashvars, params, attributes);



// '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
// Preload Object


image1 = new Image();
image1.src = "img/home_on.gif";

image2 = new Image();
image2.src = "img/environ_on.gif";

image3 = new Image();
image3.src = "img/systems_on.gif";

image4 = new Image();
image4.src = "img/approach_on.gif";

image5 = new Image();
image5.src = "img/port_on.gif";

image6 = new Image();
image6.src = "img/about_on.gif";

image7 = new Image();
image7.src = "img/request_on.gif";


// Stripey Something or other

	var stripe = function() {
		var tables = document.getElementsByTagName("table");{
		for(var x=0;x!=tables.length;x++){
			var table = tables[x];
			if (! table) { return; }
			var tbodies = table.getElementsByTagName("tbody");
			for (var h = 0; h < tbodies.length; h++) {
				var even = true;
				var trs = tbodies[h].getElementsByTagName("tr");
				for (var i = 0; i < trs.length; i++) {
					trs[i].onmouseover=function(){
						this.className += " ruled"; return false
					}
					trs[i].onmouseout=function(){
						this.className = this.className.replace("ruled", ""); return false
					}
					if(even)
						trs[i].className += " even";
					even = !even;
				}
			}
		}
	}
	window.onload = stripe;
	}
-->