// JavaScript Document
function showJRC(showObj,hiddenObj)
{
showObj.style.display="block";
hiddenObj.style.display="none";
}
function showJR(obj1,obj2,obj3,obj4)
{
	obj1.style.display="block";
	obj2.style.display="none";
	obj3.style.display="none";
	obj4.style.display="none";
}
