<!--

function tOvr(src,lay) {
	if (!src.contains(event.fromElement)) {
	 	 src.style.cursor = 'hand';
	 	 src.background = "#FF0000"; 
	 	 src.color = "#FFFFFF"; 
	}
	cOvr(lay)
}
function tOut(src) {
	if (!src.contains(event.toElement)) {
		src.style.cursor = 'default'; 
		src.background = "#ffffff"; 
	}
} 
function tClk(src) {
	if(event.srcElement.tagName=='TD'){
		src.children.tags('A')[0].click();
		event.colout = "#ffffff"; 
	}
}

function sOvr(src){
 	 src.style.cursor = 'hand';
 	 src.bgColor = "#ffffff"; 
}
function sOut(src){
 	 src.style.cursor = 'default';
 	 src.bgColor = "#ffffff"; 
}


function cOvr(lay) {
	window.tbl1.style.display = "none";
	window.tbl2.style.display = "none";
	window.tbl3.style.display = "none";
	window.tbl4.style.display = "none";
	window.tbl5.style.display = "none";
	window.tbl6.style.display = "none";
	window.tbl7.style.display = "none";
	objTbl = eval(lay);
	objTbl.style.display = "block";
}

//-->

