<!--
//Retrieving browser type.
var ns4, ie4, isMac;
ns4 = (document.layers)? true:false;
ie4 = (document.all)? true:false;

isMac = (navigator.platform.indexOf("Win"))? true:false;

// Holds the name of the current Popup box
var PopUpDiv;
PopUpDiv = '';

// Wave file for each definition
var DefSound;
DefSound = null;

// #####################################
// This function handles all components
// of the roll over effect: 
// 1- set visibility of div 
// 2- fetch and show text pages
// #####################################

var lastSubSec, Code, maxPages, subTxtCss;
subTxtCss = 0				// Temp variable
lastSubTxt = null;			// Last page displayed in 'scrolling' text box
Code = 0;					// Page to display in 'scrolling' text box

// #######################################
// Rollover function
// #######################################
function swappic(img_name,img_src) {
	document.images[img_name].src=img_src;
}

// #######################################
// Rollover function in a <DIV> tag
// #######################################
function swappicinDiv(div_name,img_name,img_src) {
	if (ns4) {
		var temp = eval('document.'+div_name+'.document.images[img_name]');
		temp.src=img_src;
		}
	else {
		document.images[img_name].src=img_src;
	}
}

// #######################################
// Rollover function in 2 nested <DIV>s
// #######################################
function swappicin2Divs(outer_div_name,inner_div_name,img_name,img_src) {
	if (ns4) {
		var temp = eval('document.'+outer_div_name+'.document.'+inner_div_name+'.document.images[img_name]');
		temp.src=img_src;
		}
	else {
		document.images[img_name].src=img_src;
	}
}

//-->