// JavaScript Document
// For main frame in writing assessment exemplar framesets.

// Show the specified comment when related text is moused over
function showComment(id) {
	document.getElementById(id).style.backgroundColor = "#FF9";
	document.getElementById('com-' + id).style.visibility = "visible";
}

// Hide the specified comment when mouse moves away from related text
function hideComment(id,evt) {
	document.getElementById(id).style.background = "transparent";
	document.getElementById('com-' + id).style.visibility = "hidden";
}
