 <!--
 if (document.images)
 {var imglist = new Array (
  "images/nav_it_on.gif",
  "images/nav_online_on.gif",
  "images/nav_market_on.gif",
  "images/nav_company_on.gif"
 );
 var imgs = new Array(); var count;
 for (count=0; count<imglist.length; count++)  {
 	imgs[count]=new Image(); 
	imgs[count].src=imglist[count];}
 }
 
 function hilite(name,m) {
 	if (document.images) {
		imgswap(name, imgs[m]);
	}
 }
 function imgswap(i1,i2)  {
 	if (document.images)  {
		var temp = i1.src; 
			i1.src=i2.src; 
			i2.src=temp;
	}
 }
 
 window.onerror = null;
 var bName = navigator.appName;
 var bVer = parseInt(navigator.appVersion);
 var NS4 = ((bName == "Netscape" && bVer >= 4) && (bName == "Netscape" && bVer < 5));
 var NS6 = (bName == "Netscape" && bVer >= 5);
 var IE4 = (bName == "Microsoft Internet Explorer" && bVer >= 4);
 var NS3 = (bName == "Netscape" && bVer < 4);
 var IE3 = (bName == "Microsoft Internet Explorer" && bVer < 4);
 var menuActive = 0
 var menuOn = 0
 var onLayer
 var timeOn = null// LAYER SWITCHING CODE
 
if (NS4 || IE4) {
 	if (navigator.appName == "Netscape") {
 		layerStyleRef="layer.";
 		layerRef="document.layers";
 		styleSwitch="";
 	}else{
 		layerStyleRef="layer.style.";
 		layerRef="document.all";
		styleSwitch=".style";
	 }
}

// SHOW MENU
function showLayer(layerName){

	if (NS4 || IE4 || NS6) {
 		if (timeOn != null) {
 			clearTimeout(timeOn);
 			hideLayer(onLayer);
 		}
 		if (NS4 || IE4) {
 			eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="visible"');
 		} 
		else if (NS6) {
			eval('document.getElementById("'+layerName+'").style.visibility="visible"');
		}
 		onLayer = layerName
 	} 
}// HIDE MENU
function hideLayer(layerName){
 	if (menuActive == 0) {
 		if (NS4 || IE4) {
 			eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="hidden"');
 		}
		else if (NS6) {
			eval('document.getElementById("'+layerName+'").style.visibility="hidden"');
		}
 	}
}// TIMER FOR BUTTON MOUSE OUT
function btnTimer() {
	if (NS4) {
		timeOn = setTimeout("btnOut()",1000);
	}
	else {
	 	timeOn = setTimeout("btnOut()",50);
	}
}// BUTTON MOUSE OUT
function btnOut(layerName) {
 	if (menuActive == 0) {
 		hideLayer(onLayer)
 	}
}// MENU MOUSE OVER 
function menuOver(itemName) {
 	clearTimeout(timeOn)
 	menuActive = 1
}// MENU MOUSE OUT 
function menuOut(itemName) {
 	menuActive = 0 
 	timeOn = setTimeout("hideLayer(onLayer)", 1000)
 }
 
function checkEmail() {
if (document.forms[1].email1.value != document.forms[1].email2.value) {	
	alert ('Those emails don\'t match!');
	return false; 
}
else { 
	document.forms[1].submit();
	return true; 
	}
}

function WM_imageSwap(daImage, daSrc){
  var objStr,obj;

  // Check to make sure that images are supported in the DOM.
  if(document.images){
    // Check to see whether you are using a name, number, or object
    if (typeof(daImage) == 'string') {
      // This whole objStr nonesense is here solely to gain compatability
      // with ie3 for the mac.
      objStr = 'document.' + daImage;
      obj = eval(objStr);
      obj.src = daSrc;
    } else if ((typeof(daImage) == 'object') && daImage && daImage.src) {
      daImage.src = daSrc;
    }
  }
}


 // -->
 
 