
function showContent () {
	document.getElementById('message').style.visibility = 'hidden';
	document.getElementById('content').style.visibility = 'visible';
}
function highlightOn(row,strFrameName) {
	row.bgColor="#E4E4E4";
	eval("parent."+strFrameName+".document.getElementById(row.id).bgColor=\"#E4E4E4\";");
}
function highlightOff(row, strFrameName) {
	row.bgColor="#ffffff";
	eval("parent."+strFrameName+".document.getElementById(row.id).bgColor=\"#ffffff\";");
}
function highlightClick(row, strFrameName) {
	row.bgColor="#DA625F";
	eval("parent."+strFrameName+".document.getElementById(row.id).bgColor=\"#DA625F\";");
}
