var browser=navigator.appName;
if (browser == "Netscape") {
	document.write('<LINK REL=StyleSheet HREF="ipns.css" TYPE="text/css">');
} else {
	document.write('<LINK REL=StyleSheet HREF="ipie.css" TYPE="text/css">');
}
function ImageLoad( theImageName, theOnSrc, theOffSrc) {
	if (document.images) {
	  eval(theImageName + "on = new Image()");
	  eval(theImageName + "off = new Image()");
	  eval(theImageName + "on.src = '" + theOnSrc + "'");
	  eval(theImageName + "off.src = '" + theOffSrc + "'");
	}
}
function ImageOn(theImageName) {
  if (document.images) {
	document.images[theImageName].src = eval(theImageName + "on.src");
  }
}
function ImageOff(theImageName) {
  if (document.images) {
	document.images[theImageName].src = eval(theImageName + "off.src");
  }
}
function menu_rollover(img) {
	MM_swapImage(img,'','/images/' + img + '_f7.gif',1);
}
