function flyout(targetID,targetChildTag,toggle,targetLevel) {
	target = document.getElementById(targetID);
	targetLink = target.getElementsByTagName("a").item(0);
	child = target.getElementsByTagName(targetChildTag);
	if(targetChildTag == "li") {
		loopCount = 1;
		loopLength = child.length;
	} else {
		loopCount = 0;
		loopLength = 1;
	}
	if(child != null) {
		for(i=loopCount;i<loopLength;i++) {
			if(toggle == 0){
				child.item(i).style.display = "block";
				if(targetLevel) {
					if(targetLevel == "parent") {
						bgColor = "#b5cfe7";
						targetLink.style.color = "#333";
					} else {
						bgColor = "#eff7ff";
					}
					targetLink.style.backgroundColor = bgColor;
				}
			} else {
				child.item(i).style.display = "none";
				if(targetLevel) {
					if(targetLevel == "parent") {
						targetLink.style.color = "#224f65";
					}
					targetLink.style.backgroundColor = "#fff";
				}
			}
		}
	}
}