var sWidth="165px";
var sHeight="150px";
var sSpeed=1;
var actualheight='';
var scroller;
//////////////////////////////////////////////////
// Content
var sContent= (
	"<CENTER> <IMG SRC='/images/NeptuneTrident-small.gif' /> </CENTER> <BR/>"
	+"<FONT CLASS='newsdate'>&nbsp;April 07, 2008&nbsp;</FONT><BR/>"
	+"<A HREF='http://searchsecurity.techtarget.com/news/article/0,289142,sid14_gci1308645,00.html?link=neptune.net' TARGET='_blank'>Kraken botnet balloons to dangerous levels</A><BR/>"
	+"<BR/>"
	+"<FONT CLASS='newsdate'>&nbsp;April 09, 2008&nbsp;</FONT><BR/>"
	+"<A HREF='http://blog.washingtonpost.com/securityfix/2008/04/kraken_creates_a_clash_of_the.html?nav=neptune.net' TARGET='_blank'>Kraken Spawns a Clash of the Titans</A><BR/>"
	+"<BR/>"
	+"<FONT CLASS='newsdate'>&nbsp;April 09, 2008&nbsp;</FONT><BR/>"
	+"<A HREF='http://www.pcworld.com/businesscenter/article/144306/as_storm_fades_botnet_fight_goes_on.html?link=neptune.net' TARGET='_blank'>As Storm Fades, Botnet Fight Goes on</A><BR/>"
	+"<BR/>"
	+"<FONT CLASS='newsdate'>&nbsp;April 09, 2008&nbsp;</FONT><BR/>"
	+"<A HREF='http://www.heise.de/english/newsticker/news/106246?link=neptune.net' TARGET='_blank'>The 'Kraken' - a botnet bigger than Storm</A><BR/>"
	+"<BR/>"
);

//////////////////////////////////////////////////
//

window.onload=populate;
function populate(){
	if (document.getElementById || document.all ){
		scroller=document.getElementById? document.getElementById("sScroll") : document.all.sScroll;
		scroller.style.top=parseInt(sHeight)+8+"px";
		scroller.innerHTML=sContent;
		actualheight=scroller.offsetHeight;
	} else if (document.layers){
		scroller=document.scroller.document.sScroll;
		scroller.top=parseInt(sHeight)+8;
		scroller.document.write(sContent);
		scroller.document.close();
		actualheight=scroller.document.height;
	}
	lefttime=setInterval("scroll()",40);
}

function scroll(){
	if ( document.getElementById || document.all ) {
		if (parseInt(scroller.style.top) > (actualheight*(-1)+8) ) {
			scroller.style.top=parseInt(scroller.style.top)-sSpeed+"px";
		} else {
			scroller.style.top=parseInt(sHeight)+8+"px";
		}
	} else if (document.layers){
		if ( scroller.top > (actualheight*(-1)+8) ) {
			scroller.top-=sSpeed;
		} else {
			scroller.top=parseInt(sHeight)+8;
		}
	}
}

//////////////////////////////////////////////////
//
if (document.getElementById || document.all ){
	document.write(
		'<DIV STYLE="position : relative ; width : '+sWidth+'; height : '+sHeight+'; overflow : hidden;"'
		+' onMouseOver="sSpeed=0"'
		+' onMouseOut="sSpeed=1">'
		+'<DIV ID="sScroll" STYLE="position : absolute; left : 0px; top : 0px; width : 100%;"></DIV>'
		+'</DIV>'
	);
} else if (document.layers){
	document.write(
		'<ILAYER WIDTH="'+sWidth+'" HEIGHT="'+sHeight+'" NAME="scroller">'
		+'<LAYER NAME="sScroll" WIDTH="'+sWidth+'" HEIGHT="'+sHeight+'" LEFT="0" TOP="0"'
		+' onMouseover="sSpeed=0"'
		+' onMouseout="sSpeed=1"></LAYER>'
		+'</ILAYER>'
	);
}
