function set_virusdata(f, name)
{
	list=f.contentWindow.document.body.innerHTML;
	v=list.split(/ /);

        a=v[0].split(/=/);

	//window.alert(name);

        i=document.getElementById(name);
        i.innerHTML=a[0];
}

function toggle_top10( span, menu )
{
	i=document.getElementById('top10rpc');
	
	i.src='/sp98/virus/virus-status/'+span;

	m=document.getElementById('top10menu1');
	m.style.display='none';
	m=document.getElementById('top10menu2');
        m.style.display='none';
	m=document.getElementById('top10menu3');
        m.style.display='none';
	m=document.getElementById('top10menu'+menu);
	m.style.display='';

	//addroundedbox(document.body);

//      DomViewerObj=document.body;
//      window.open("/domviewer");
}

function set_virustop10( f )
{
	if ( !f.src.match(/klak99$/) )
	{
	list=f.contentWindow.document.body.innerHTML;
	//window.alert( list );

	v=list.split(/ /);

	for( i=0; i<10; i++ )
	{
		//window.alert('src='+f.src+' top10bar'+i);
		a=v[i].split(/=/);
		t=document.getElementById('top10bar'+i);
		t.style.width=a[1]+'%';

		t=document.getElementById('top10name'+i);
                t.innerHTML=a[0];
		t=document.getElementById('top10pct'+i);
		t.innerHTML=a[1]+'%';
	}
	}
}
