function move (id, imgId)
{
for (var i=1;i<=3;i++)
{
var e= document.getElementById("table"+i);
e.style.display = 'none';
}
var t = document.getElementById(id);
t.style.display = 'block';

fImg1=document.getElementById("imgcontact");
fImg2=document.getElementById("imgFund");
fImg3=document.getElementById("imgTools");
//alert(imgId);
	if(imgId == "imgcontact")
	{
		fImg1.src="../images/contact_box_03.gif";
		fImg2.src="../images/contact_box_05.gif";
		fImg3.src="../images/contact_box_07.gif";
	}
	if(imgId == "imgFund")
	{
		fImg1.src="../images/tab_contact_n.gif";
		fImg2.src="../images/tab_fundvalues_r.gif";
		fImg3.src="../images/contact_box_07.gif";
	}
	if(imgId == "imgTools")
	{
		fImg1.src="../images/tab_contact_n.gif";
		fImg2.src="../images/contact_box_05.gif";
		fImg3.src="../images/tab_tools-&Calculator_r.gif";
	}
}


function getFundValues(objProduct)
        {
            var table = document.getElementById("tblFund");
            if(objProduct.selectedIndex > 0)
            {
                document.getElementById("updateMessage").style.display = "inline";
                getDynamicData("../ajax/ajax.aspx",objProduct.options[objProduct.selectedIndex].value,"GetFundValuesNew");
               
                if(objProduct.options[objProduct.selectedIndex].value == '14')
                {
                    document.getElementById("table2").style.height = "155px";
                }
                else if(objProduct.options[objProduct.selectedIndex].value == '20') //*******(Date : 8-05-2009)
                    {
                        document.getElementById("table2").style.height = "230px";
                    }
                else
                {
                    document.getElementById("table2").style.height = "135px";
                }
             }
            else
            {
                table.style.display = "none";
                //document.getElementById("RightNavigation1_ctl03_Nav").style.display = "inline";
                objNavProductImgage.style.display = "inline";
            }
        }
