//DHTML code for rollovers...
//is this netscape
N = (document.all) ? 0 : 1;
// creta an object
var ob;
//swap colors...
function swapColor(passVar) {

	if (N) {
		ob = document.getElementById(passVar);
		ob.style.background="#993399";
		return false;
	}
	else {
		ob = document.getElementById(passVar);
		ob = ob.style;
		ob.background="#993399";
		ob.color="#ffffff";
		ob.cursor="Pointer";
	}
}

function swapColorback(passVar) {

		if (N) {
			ob = document.getElementById(passVar);
			ob.style.background="#dedede";
			return false;
		}
		else {
			ob = document.getElementById(passVar);
			ob = ob.style;
			ob.background="#dedede";
			ob.color="#000000";
		}
	
}
// go to this page...
function page(sent) {
location.href=("/htdb/" + sent + ".html");
}

