var ReasonScreenShown=false;
var cp_rhs;
if (!cp_rhs) {
	cp_rhs = "cp-rhs"; //default value for the ID of the RHS cell.
}

function handleMouseOverOnReasons () {
//alert("showing reawsons");
if (ReasonScreenShown==false) {
	showReasons();
}
}

function handleMouseOutOnReasons () {
	if (ReasonScreenShown==false) {
		hideReasons();
	}
}

function handleClickOnReasons() {
	ReasonScreenShown=true;
	showReasons();
}

function handleCloseReasons () {
	ReasonScreenShown=false;
	hideReasons();

}

function showReasons() {
	document.getElementById('reasons_1').style.display="";
	document.getElementById('reasons_2').style.display="none";
	document.getElementById(cp_rhs).style.display="none";

}
function hideReasons() {
	document.getElementById(cp_rhs).style.display="";
	document.getElementById('reasons_1').style.display="none";
	document.getElementById('reasons_2').style.display="none";
}



function showReasons2() {
		document.getElementById(cp_rhs).style.display="none";
		document.getElementById('reasons_1').style.display="none";
		document.getElementById('reasons_2').style.display="";

}

