//<script language="javascript">  //This tag is to fake Interdev into recognizing this file as a javascript file 

function jsRollover(poImg){
	var sSrc
	var sState
	sSrc = poImg.src.substr(0, (poImg.src.length - 5))
	sState = poImg.src.substr((poImg.src.length - 5),1)
	if (sState=="4"){
		return;
	}
	switch(event.type){
		case 'mousedown':
			sSrc = sSrc + '3'
			break
		case 'mouseup':
			sSrc = sSrc + '2'
			break
		case 'mouseover':
			sSrc = sSrc + '2'
			break
		case 'mouseout':
			sSrc = sSrc + '0'
			break
	}
	poImg.src = sSrc + '.gif'
}
	
function doUnderline(poTD) {
	poTD.style.textDecoration = "underline";
}

function removeUnderline(poTD) {
	poTD.style.textDecoration = "none";
}
	
	