<!--
function open_win(sUrl){
	mywin = window.open(sUrl, 'win', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=720,height=485,top=230,left=390');
	mywin.focus();
}
function switch_color(theRow,theColor,theTextColor){
	theRow.bgColor=theColor;
	theCell = theRow.cells[0];
	theCell.style.color = theTextColor;
	theLink = theCell.getElementsByTagName('a');
	if(theLink.length>0){
		theLink[0].style.color=theTextColor;
	}
}
function menu_link(theCell){
	var theLink = theCell.getElementsByTagName('a');
	document.location.href = theLink[0].href;
}
function switch_cursor(theCell,theCursor){
	theCell.style.cursor = theCursor;
}
function swap_image(obj_image, new_image){
	obj_image.src = new_image;
}
-->
