if (navigator.appName.indexOf('Netscape') != -1) {
			var wversion = navigator.appVersion.substr(0,3);
			if (wversion.indexOf('5.0') != -1) {
				var myBr = "nn6";
			}
			else {
				var myBr = "nn4";
			}
		}
		else {
			var myBr = "IE";
		}

function swapCol(whichsub,Oswitch) {
			if (myBr == 'IE') {
				if (Oswitch == 'on') {
					document.all[whichsub].style.color='#A32E13';
				}
				if (Oswitch == 'off') {
					document.all[whichsub].style.color='#dae1e3';
				}				
			}
			else if (myBr == 'nn6') {
				if (Oswitch == 'on') {
					document.getElementById(whichsub).style.color='#A32E13';
				}
				if (Oswitch == 'off') {
					document.getElementById(whichsub).style.color='#dae1e3';
				}
			}
		}

function swapblCol(whichsub,Oswitch) {
			if (myBr == 'IE') {
				if (Oswitch == 'on') {
					document.all[whichsub].style.color='#17577A';
				}
				if (Oswitch == 'off') {
					document.all[whichsub].style.color='#dae1e3';
				}				
			}
			else if (myBr == 'nn6') {
				if (Oswitch == 'on') {
					document.getElementById(whichsub).style.color='#17577A';
				}
				if (Oswitch == 'off') {
					document.getElementById(whichsub).style.color='#dae1e3';
				}
			}
		}


function swapMCol(whichsub,Oswitch) {
			if (myBr == 'IE') {
				if (Oswitch == 'on') {
					document.all[whichsub].style.color='#475354';
				}
				if (Oswitch == 'off') {
					document.all[whichsub].style.color='#a2acad';
				}				
			}
			else if (myBr == 'nn6') {
				if (Oswitch == 'on') {
					document.getElementById(whichsub).style.color='#475354';
				}
				if (Oswitch == 'off') {
					document.getElementById(whichsub).style.color='#a2acad';
				}
			}
		}


function openWin(theURL,winName,features) {
window.open(theURL,winName,features);
}

