<!--
//DHTML JAVA SCRIPT
function fwLoadMenus() {
// The function "MENU" has the following parameters : Menu(label, menu width, menu height, font, font size, font color, font hilight color, background color, hilight background color)
	window.fw_menu_2= new Menu("root",110,19,"Verdana, Arial, Helvetica, sans-serif",10,"#000000","#000000","#FBF5DD","#EDE4C0");
	fw_menu_2.addMenuItem("&nbsp;About us","location='about_us.html'");
	fw_menu_2.addMenuItem("&nbsp;Company Profile","location='profile.html'");
	fw_menu_2.addMenuItem("&nbsp;Message from MD","location='message.html'");
	fw_menu_2.hideOnMouseOut=true;
	fw_menu_2.childMenuIcon= "images/arrows.gif";
	fw_menu_2.writeMenus();
}

	var bName = navigator.appName;
	var bVer = parseInt(navigator.appVersion);
	var NS6 = (bName == "Netscape" && bVer >= 5);
	var NS4 = (bName == "Netscape" && bVer >= 4 && 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 nav02Top=232;

	 if (NS4) {intTop=61;}
	 var intLeft=0

// IE5 MAC FIX
	if((navigator.userAgent.indexOf("MSIE 5.") != -1) && (navigator.userAgent.indexOf("Mac") != -1) && (navigator.userAgent.indexOf("Opera") == -1)) {
		var nav02Top=18;
		var RegulationTop=38;
	}


	// SHOW MENU
function imgPos(imgName){
	img = getImage(imgName);
	imgLeft = getImagePageLeft(img) + 0; // LEFT POSITION
	intLeft=imgLeft
	return imgLeft;
}

function getImage(name) {
	if (NS4 || NS6) return findImage(name, document);
	if (IE4 || NS6) return eval('document.all.' + name);
	return null;
}

function findImage(name, doc) {
	var i, img;
	for (i = 0; i < doc.images.length; i++)
		if (doc.images[i].name == name) return doc.images[i];
	for (i = 0; i < doc.layers.length; i++)
		if ((img = findImage(name, doc.layers[i].document)) != null) {
			img.container = doc.layers[i];
			return img;
		}
	return null;
}

function getImagePageLeft(img) {
	var x, obj;
	if (NS4 || NS6) {
		if (img.container != null)

			return img.container.pageX + img.x - 1;
		else
			return img.x - 1;
	}
	if (IE4) {
		x = 0;
		obj = img;
		while (obj.offsetParent != null) {
			x += obj.offsetLeft;
			obj = obj.offsetParent;
		}
		x += obj.offsetLeft;
		return x;
	}
	return -1;
}

function getImagePageTop(img) {

	var y, obj;
	
	if (NS4 || NS6) {
	if (img.container != null)
		return img.container.pageY + img.y;
	else
		return img.y;
	}
	if (IE4) {
		y = 0;
		obj = img;
		while (obj.offsetParent != null) {
			y += obj.offsetTop;
			obj = obj.offsetParent;
		}
		y += obj.offsetTop;
		return y;
	}
	return -1;
}

// ROLL-OVER JAVASCRIPT
nav02_over = new Image();
nav02_over.src = "images/company_off.jpg";
nav02_off = new Image();
nav02_off.src = "images/company_on.jpg";


function imgAct(imgName) {
	document[imgName].src = eval(imgName + "_over.src");
}

function imgInact(imgName) {
	document[imgName].src = eval(imgName + "_off.src");
}


-->