//	******* ShowHideSection *************************************************
    //Show / hide a section

    function ShowHideSection(section)
    {
	var obj = document.getElementById(section);
	if(obj.style.display=="none") {
        obj.style.display="block";
		//eval('x' + ref).innerHTML = '<span style="text-decoration: underline;">Hide</span>';
	} else {
		obj.style.display="none";
	}
    }//