var Anthem_FormID = "Form1";

function Anthem_InvokeAnotherPageMethod(url,methodName, args, clientCallBack, clientCallBackArg) {
	Anthem_Clear__EVENTTARGET(); // fix for bug #1429412
    return Anthem_CallBack(url, "Page", null, methodName, args, clientCallBack, clientCallBackArg, false, false);
}

function closeInfo()
{
	infoSpan.style.display="none";
}

function getInfo(symbol)
{
	infoSpan.style.right=150;
	infoSpan.style.top=document.body.scrollTop+30;
	infoSpan.style.height=window.screen.availHeight-250;
	infoText.innerHTML=infoText.innerHTML+"<img style='z-index:1001;position:absolute;top:16px;left:10;' src='themes/images/wait.gif'>";
		
	infoSpan.style.display="";

	Anthem_InvokeAnotherPageMethod('serverScript.aspx?Anthem_CallBack=true','ZInfo',[symbol,Math.round(Math.random()*1000,0)],
	    function(result){
	        var outHtml=result.value;             
	        infoText.innerHTML=outHtml;
	    }
	);
}

function iTab(tabcode)
{
	var ipos;
	for(ipos=0;ipos<=2;ipos++)
	{
		if (ipos==tabcode)
		{
			document.getElementById("iTab" + ipos).className='aTab';	
			document.getElementById("iTbl" + ipos).style.display='';	
		}else{
			document.getElementById("iTab" + ipos).className='dTab';	
			document.getElementById("iTbl" + ipos).style.display='none';	
		}

	}
	
}

