<!--
//  function that changes the text attributes
function changeClass(src,td,clr){		//  (source, underline/normal, color)
	src.style.textDecoration = td;		//	text decoration
	src.style.color = clr;				//	text color
}

//  function that highlights the table cell and and shows a description on Mouse Over...will not change back on Mouse Out
function mOver(src,clrOver,arraySize) {		//	(source, color change, description, number of table cell)
	if (!src.contains(event.fromElement)) {		
	
	x = arraySize + 1;								//	sets x to the right number of table cells
		for (j=0; j<x; j++){						
			eval("r" + j + ".bgColor = '#ffff99'");	//	for each table cell, change the color to the non high light color
		}
	
		src.style.cursor = 'hand';					//	change the mouse cursor to a hand when over the table cell
		src.bgColor = clrOver;						//	change the table cell color on Mouse Over
	}
}

//  function that hightlights the table cell on Mouse Over...will change back on Mouse Out
function msOver(src,clrOver) {				//	(source, color, description)
	if (!src.contains(event.fromElement)) {			
		src.style.cursor = 'hand';					//	changes the mouse cursor to a hand on Mouse Over
		src.bgColor = clrOver;						//	changes the color of the table cell on Mouse Over
	}
}

//  function that returns table cell back to normal on Mouse Out
function mOut(src,clrIn) {							//	(source, Color change)
	if (!src.contains(event.toElement)) {			
	  src.style.cursor = 'default';					//	sets mouse cursor back to normal
	  src.bgColor = clrIn;							//	sets table cell color back to normal
	}
 }
  
//  function that makes the table cell clickable
function mClk(src) {								//	(source)
    if(event.srcElement.tagName=='TD'){				
	  src.children.tags('A')[0].click();			//	url link 
    }
  }

ie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ));

function toggleOn(targetId,description){
  if (ie4){
  		target = document.all(targetId);
  		target.style.display = "";
  		if (description != ""){
			target.innerHTML = description;				//	show the desction on Mouse Over
		}
  	}
}
function toggleOff(targetId,description){
  if (ie4){
  		target = document.all(targetId);
  		target.style.display = "none";
  	}
}
//-->