function _rnd(min, max)
{
	rand = min + Math.floor(Math.random()*(max-min+1));
	return rand;
}

var vmin=2;
var vmax=2;
var vr=1;
var timer1;
var flyimage1;

if (popupUrl == 'random')
{
	rndImage = _rnd(1,7);
	popupUrl = "http://ktu.sv2.biz/tools/content/eurolive/"+popupSynergie+"/"+popupLg+"/"+popupDesign+"/"+rndImage+".gif"
}

try{
	document.write("<DIV id='floating' style='position:absolute; z-index:0; overflow: visible; visibility: visible; left: 0px; top: 0;'>");
	document.write("<DIV ID='flyimage1' STYLE='position:absolute; left: -500px; width:"+popupWidth+"; height:"+popupHeight+";'>");
	document.write("<A HREF='javascript: run_action(this)' ><IMG SRC='"+popupUrl+"' BORDER='0'></a></DIV>");
	document.write("</DIV>");
} catch(e) { }


//document.close();
function iecompattest() { return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body; }
function Chip(chipname,width,height){ this.named=chipname;this.vx=vmin+vmax*Math.random();this.vy=vmin+vmax*Math.random();this.w=width+20; this.h=height;this.xx=0; this.yy=0;this.timer1=null; }
function movechip(chipname) { 
	if (document.getElementById) {
		eval("chip="+chipname);
		if ( window.innerWidth || window.opera){
			pageX=window.pageXOffset;
			pageW=window.innerWidth-40;
			pageY=window.pageYOffset;
			pageH=window.innerHeight-20;
		} else if (document.body) { pageX=iecompattest().scrollLeft; pageW=iecompattest().offsetWidth-40; pageY=iecompattest().scrollTop; 		pageH=iecompattest().offsetHeight-20; }
		chip.xx=chip.xx+chip.vx;
		chip.yy=chip.yy+chip.vy;
		chip.vx+=vr*(Math.random()-0.5);
		chip.vy+=vr*(Math.random()-0.5);
		if(chip.vx>(vmax+vmin))  chip.vx=(vmax+vmin)*2-chip.vx;
		if(chip.vx<(-vmax-vmin)) chip.vx=(-vmax-vmin)*2-chip.vx;
		if(chip.vy>(vmax+vmin))  chip.vy=(vmax+vmin)*2-chip.vy;
		if(chip.vy<(-vmax-vmin)) chip.vy=(-vmax-vmin)*2-chip.vy;
		if(chip.xx<=pageX){ chip.xx=pageX; chip.vx=vmin+vmax*Math.random(); }
		if(chip.xx>=pageX+pageW-chip.w) { chip.xx=pageX+pageW-chip.w; chip.vx=-vmin-vmax*Math.random(); }
		if(chip.yy<=pageY) { chip.yy=pageY; chip.vy=vmin+vmax*Math.random(); }
		if (chip.yy>=pageY+pageH-chip.h) { chip.yy=pageY+pageH-chip.h; chip.vy=-vmin-vmax*Math.random(); }
		document.getElementById(chip.named).style.left=chip.xx+"px";
		document.getElementById(chip.named).style.top=chip.yy+"px";
		chip.timer1=setTimeout("movechip('"+chip.named+"')",100);
	}
}

function pagestart()
{ 
	if (typeof useCookies != 'undefined')
		shown = document.cookie.indexOf('jstools_float=') != -1 ? 1 : 0;
	else
		shown=false;

	if(shown==0)
	{
		if (typeof useCookies != 'undefined')
			document.cookie = 'jstools_float=1';

		flyimage1=new Chip("flyimage1",161,161); movechip("flyimage1"); 
	}
	
}

function run_action(obj) 
{
	if (linkTarget == '_blank')
	{
		window.open(linkUrl);
	}	
	else
	{
		window.location = linkUrl;
	}
}


setTimeout('pagestart();', 1000);