function writeServerName() 						// Called by HM_Arrays to dynamically 
	{ 							// populate the HM_Arrays' URL parameters
		var aspServerName				// with the full URL path. This enables 
		aspServerName = ""		// status bar in browser (lower left corner)
		return(aspServerName);				// to show full URL, not just relative path.
	}

function getStartPosition_Array1() {					// Called by HM_Arrays, left_position parameter.
	var objImg
	objImg = document.images['company']
	// alert(objImg);
	if (HM_NS4){
		return eval(objImg).x + 20
		} else {
		return getXPosition(objImg) + 20;
		}
	}
	
function getStartPosition_Array2()						// Called by HM_Arrays, left_position parameter.
	{
		return getStartPosition_Array1() + 55;
	}	

function getStartPosition_Array3()						// Called by HM_Arrays, left_position parameter.
	{
		return getStartPosition_Array1() + 132;
	}

function getStartPosition_Array4()						// Called by HM_Arrays, left_position parameter.
	{
		return getStartPosition_Array1() + 205;
	}

function getStartPosition_Array5()						// Called by HM_Arrays, left_position parameter.
	{
		return getStartPosition_Array1() + 341;
	}

function getStartPosition_Array6()						// Called by HM_Arrays, left_position parameter.
	{
		return getStartPosition_Array1() + 422;
	}

function getStartPosition_Array7()						// Called by HM_Arrays, left_position parameter.
	{
		return getStartPosition_Array1() + 460;
	}	

function getXPosition(imgElem) {						// Called by getStartPosition_Array1.
		xPos = eval(imgElem).offsetLeft;
		tempEl = eval(imgElem).offsetParent;
	  	while (tempEl != null) {
	  		xPos += tempEl.offsetLeft;
	  		tempEl = tempEl.offsetParent;
	  	}
		return xPos;
	}

function loadCSSFile(){							// IMPORTANT: loadCSSFile() is called at 
		var cssFile						// the bottom of HM_Loader.js, where the browser detect occurs.
											
		if (HM_NS4) {						// Netscape 4
			cssFile = "stylesheet_ns.css"
		} else {							// IE4, IE5, Netscape 6, + anything else
			cssFile = "stylesheet_ie.css"			
		}		
		
		stylesheetURL = "<LINK REL='stylesheet' HREF='" + cssFile + "' TYPE='text/css'>";		
		document.write(stylesheetURL);
	}


function MM_openBrWindow(theURL,winName,features) { //v2.0
 		 window.open(theURL,winName,features);
	}

