function myInt(targetId){
	if (document.getElementById)
		{
		targetA = document.getElementById('interest');
		targetB = document.getElementById('fundDetails');
		targetC = document.getElementById('howToApply');

			targetA.style.display = "block";
			targetB.style.display = "none";
			targetC.style.display = "none";
                      //  location.href= ('/index.html#here');
		}
        
}
