

// to show and hide divs - begin //
		
		function hidediv(id) { 
			if (document.getElementById) {
				if (id == "option1") {
					document.getElementById('option1').style.display = 'none'; 
				}
				if (id == "option2") {
					document.getElementById('option2').style.display = 'none'; 
				}
			} 
		}
		
		function showdiv(id) { 
			if (document.getElementById) {
				if (id == "option1") {
					document.getElementById('option1').style.display = 'block'; 
				}
				if (id == "option2") {
					document.getElementById('option2').style.display = 'block'; 
				}
			} 
		}

// to show and hide divs on main portal page - end //
