
var lang="";
function show2()
{
news_ticker();
stock_ticker();
}
function show5()
{

show2();
setTimeout("show5()",120000);

}
function stock_ticker()
{
try
{
	var url="../../db/ask_data.aspx?index=stocks_ticker";
	var xml = DoCallback(url);
    var str=xml.responseText;
Stock_ticker.innerHTML=str; 
}
catch(e)
{
Stock_div.innerHTML=""}
}

function news_ticker()
{
try
{
	var url="../../db/ask_data.aspx?index=news_ticker";
	var xml = DoCallback(url);

    var str=xml.responseText;
news_div.innerHTML=str;
}
catch(e)
{
news_div.innerHTML=""}
}

onerror=handleErrorstm
function handleErrorstm()
{
return true
}

function change_hand(img_id,hand,style)
	{
	
		if(hand=='true')
		{
			document.all(img_id).style.cursor ="hand";
		}
		else
		{	
			document.all(img_id).style.cursor ="default";
		}
		document.all(img_id).className=style;
	}
	
	
function check()
{
window.open("../home/checkaccount.aspx", "checkaccount", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=400,height=200")
}
