<!--

function breadCrumbing(){
	var loc = window.location.href;
	var dis = loc.split('/');
	var n;

	for(var i = 2; i < (dis.length-1); i++){
		if(i > 2){ document.write(' / ') }
		n = loc.lastIndexOf(dis[i+1]);
		n = loc.slice(0, n);
		dis[i] = dis[i].toUpperCase();
		dis[i] = dis[i].replace(/[_]/g, ' ');
		document.write('<a href="' + n + '" >' + dis[i] + '</a>');
	}

	f = dis[dis.length-1].toUpperCase();
	if(f.indexOf("INDEX") == -1){
		f = f.replace(/[_]/g, ' ');
		f = f.split('.');
		document.write(' / ' + f[0]);
	}
}


function pageUpdated(){
	var ua = window.navigator.userAgent;
	var lm = document.lastModified;
	var browser = "";

	if ((ua.indexOf("Netscape") != -1) && (ua.indexOf("Mac OS X") != -1)){
		browser = "netscape_osx";
	} else if (ua.indexOf("Netscape") != -1){
		browser = "netscape";
	} else if (ua.indexOf("Opera") != -1){
		browser = "opera";
	} else if ((ua.indexOf("MSIE") != -1) && (ua.indexOf("Mac_PowerPC") != -1)){
		browser = "ie_mac";
	} else if (ua.indexOf("MSIE") != -1){
		browser = "ie";
	} else if (ua.indexOf("Safari") != -1){
		browser = "safari";
	}

	switch (browser){
		case "netscape_osx":
			var mod_date = lm.split(" ");
			document.write(mod_date[2] + " " + mod_date[1] + " " + mod_date[4]);
			break;
		case "netscape":
			var mod_date = lm.split(" ");
			document.write(mod_date[1] + " " + mod_date[2] + " " + mod_date[3]);
			break;
		case "opera":
			var mod_date = lm.split(" ");
			document.write(mod_date[1] + " " + mod_date[2] + " " + mod_date[3]);
			break;
		case "safari":
			var mod_date = lm.split(" ");
			document.write(mod_date[1] + " " + mod_date[2] + " " + mod_date[3]);
			lineFix();
			break;
		case "ie_mac":
			var mod_date = lm.split(" ");
			document.write(mod_date[2] + " " + mod_date[1] + " " + mod_date[4]);
			lineFixMacIE();
			break;
		case "ie":
			var mod_date = lm.split(" ");
			document.write(mod_date[0]);
			break;
		default:
			if (document.lastModified){
				document.write(lm);
			}else{
			document.write('Unavailable');
			}
	}
}


function lineFix(){
	var navHeight = document.firstChild.childNodes[1].childNodes[4].childNodes[1].childNodes[1].firstChild.clientHeight;
	document.styleSheets[0].cssRules[21].style.height = (navHeight - 111);
}

//-->

