<!-- PLEASE DOCUMENT ALL FUNCTIONS THAT ARE USED IN THIS FILE -->


<!-- used for the navigation combo box to flip to pages -->
function jumpMenu(targ,selObj,restore){ 
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

<!-- used whenever a mouseover image change is needed -->
flag = 0;
name = navigator.appName;
version = parseInt(navigator.appVersion);
if (name == "Netscape" && version >= 3) { flag = 1; }
if (name == "Microsoft Internet Explorer" && version >= 4) { flag = 1; }
	
function switchto(name, on) {
  if (flag == "1") {
    image = eval(name + (on == 1 ? "on.src" : "off.src"));
    document[name].src = image;
  }
}

// Generic pop-up routine by Steven M Bloomfield
			window.onerror = null;
			function popIt(popName,popURL,popWidth,popHeight)
			{	
				msgwindow = window.open(popURL,popName,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,title=0,Width='+popWidth+',Height='+popHeight+',alwaysRaised=1');
			}

/* Show / hide menus in health and beauty section */
function showMenu(a,b,c) {
//	document.getElementById(a+'Menu').style.display = "block";
//	document.getElementById(b+'Menu').style.display = "none";
//	document.getElementById(c+'Menu').style.display = "none";
}
