
function getObj(name) {
	obj = document.getElementById(name);
	return obj;
}

// docObj = "document.all.";
//function getObj(name) {
//	obj = eval(docObj + name);
//	return obj;
//}

menuList = new Array("aboutus", "media", "services", "blank");

function showMenu(menuID) {
	if (menuID != '') {
		menuObj = getObj(menuID);
	}
	if ((menuID != '') && (menuObj.style.display == "inline")) {
		menuObj.style.display = "inline";
	} else {				
		for (i in menuList) {
			menuObj = getObj(menuList[i]);
			menuObj.style.display = "none";
		}
		if (menuID != '') {
			menuObj = getObj(menuID);
			menuObj.style.display = "inline";
		}
	}
}

function keep_color(lnkObj) {
getObj(lnkObj).style.color = "#FF7400";
}

function def_color(lnkObj) {
getObj(lnkObj).style.color = "";
}


// pop-up (privacy policy)

function pop_up(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}