function show(obj) {
	obj.className = "right_pane_box_hilite";
}
function hidden(obj) {
	obj.className = "right_pane_box";
}
function toggleFrameHelp(content){
                
	var obj = document.getElementById('overlaySide');
	if (obj){
		var innerObj = document.getElementById('overLayContent');
		if (innerObj){
                                	innerObj.innerHTML = '<p>' + content + '</p>';
			obj.style.display = "block";
		}
	}
}