var posYmax=1;                                //MAX # OF PIXEL STEPS IN THE "X" DIRECTION
var posXmax=1;                                //MAX # OF PIXEL STEPS IN THE "Y" DIRECTION
var TimeMax=10000;                        //MAX # OF MILLISECONDS BETWEEN PARAMETER CHANGES
 
var bubblefloat=new Array();

bubblefloat[0]='images/bubble-ad.gif';
//bubblefloat[0]='images/dotnet.gif';
//bubblefloat[0]='images/40-annual-cbc-bubble.gif';
//bubblefloat[1]='images/lilfolks-xmasoffer-bubble.gif';

 
function callurl(num)
{
top.location.href="bannerhits.asp?client=veshop";
hidebubble(num);
 
}


var NS4 = (navigator.appName.indexOf("Netscape")>=0 && parseFloat(navigator.appVersion) >= 4 && parseFloat(navigator.appVersion) < 5)? true : false;
var IE4 = (document.all)? true : false;
var NS6 = (parseFloat(navigator.appVersion) >= 5 && navigator.appName.indexOf("Netscape")>=0 )? true: false;
var wind_w, wind_h, t='', IDs=new Array();
for(i=0; i<bubblefloat.length; i++){
//t+=(NS4)?'<layer name="pic'+i+'" visibility="hide" width="18" height="17"><a href="javascript:void();" onclick="javascript:hidebubble('+i+')">' : '<div id="pic'+i+'" STYLE="position:absolute;visibility:hidden;"><a href="javascript:void();" onclick="javascript:hidebubble('+i+')">';
t+=(NS4)?'<layer name="pic'+i+'" visibility="hide" width="18" height="17"><a href="javascript:void();" onclick="javascript:hidebubble('+i+')">' : '<div id="pic'+i+'" STYLE="position:absolute;visibility:hidden;">';

t+='<img src="'+bubblefloat[i]+'" onmouseover="javascript:getnewprops1('+i+');" name="p'+i+'" border="0" usemap="#Map'+i+'"><map name="Map'+i+'"><area shape="rectangle" coords="0,0,60,10" href="javascript:hidebubble('+i+')" onclick="javascript:hidebubble('+i+')" border="1"></map>';
//t+='<img src="'+bubblefloat[i]+'" onmouseover="javascript:getnewprops1('+i+');" name="p'+i+'" border="0">';						

t+=(NS4)? '</a></layer>':'</a></div>';
}


document.write(t);


function moveimage(num){
if(getidleft(num)+IDs[num].W+IDs[num].Xstep >= wind_w+getscrollx())IDs[num].Xdir=false;
if(getidleft(num)-IDs[num].Xstep<=getscrollx())IDs[num].Xdir=true;
if(getidtop(num)+IDs[num].H+IDs[num].Ystep >= wind_h+getscrolly())IDs[num].Ydir=false;
if(getidtop(num)-IDs[num].Ystep<=getscrolly())IDs[num].Ydir=true;
moveidby(num, (IDs[num].Xdir)? IDs[num].Xstep :  -IDs[num].Xstep , (IDs[num].Ydir)?  IDs[num].Ystep:  -IDs[num].Ystep);
}

function getnewprops(num){

IDs[num].Ydir=Math.floor(Math.random()*2)>0;
IDs[num].Xdir=Math.floor(Math.random()*2)>0;
IDs[num].Ystep=Math.ceil(Math.random()*posYmax);
IDs[num].Xstep=Math.ceil(Math.random()*posXmax)

setTimeout('getnewprops('+num+')', Math.floor(Math.random()*TimeMax));
}
function getnewprops1(num){

//IDs[num].Ydir=Math.floor(Math.random()*2)>0;
//IDs[num].Xdir=Math.floor(Math.random()*2)>0;
//IDs[num].Ystep=Math.ceil(Math.random()*posYmax);
//IDs[num].Xstep=Math.ceil(Math.random()*posXmax)

IDs[num].Ydir=0
IDs[num].Xdir=0
IDs[num].Ystep=0
IDs[num].Xstep=0
//setTimeout('getnewprops('+num+')', Math.floor(Math.random()*TimeMax));
}
function getscrollx(){
if(NS4 || NS6)return window.pageXOffset;
if(IE4)return document.body.scrollLeft;
}

function getscrolly(){
if(NS4 || NS6)return window.pageYOffset;
if(IE4)return 100;
}

function getid(name){
if(NS4)return document.layers[name];
if(IE4)return document.all[name];
if(NS6)return document.getElementById(name);
}

function moveidto(num,x,y){

if(NS4)IDs[num].moveTo(x,y);
if(IE4 || NS6){
IDs[num].style.left=x+'px';
IDs[num].style.top=y+'px';
}}

function getidleft(num){
if(NS4)return IDs[num].left;
if(IE4 || NS6)return parseInt(IDs[num].style.left);
}

function getidtop(num){
if(NS4)return IDs[num].top;
if(IE4 || NS6)return parseInt(IDs[num].style.top);
}

function moveidby(num,dx,dy){
if(NS4)IDs[num].moveBy(dx, dy);
if(IE4 || NS6){
IDs[num].style.left=(getidleft(num)+dx)+'px';
IDs[num].style.top=(getidtop(num)+dy)+'px';
}}

function getwindowwidth(){
if(NS4 || NS6)return window.innerWidth;
if(IE4)return document.body.clientWidth;
}

function getwindowheight(){
if(NS4 || NS6)return window.innerHeight;
if(IE4)return document.body.clientHeight;
}
var startfly;
function startfloat()
{
if(NS4 || NS6) { 
	wind_w=window.innerWidth;//floater code changes
	wind_h=window.innerHeight;//floater code change
}
else {
	wind_w=document.body.clientWidth;//floater code changes
	wind_h=document.body.clientHeight;//floater code changes
}
for(i=0; i<bubblefloat.length; i++){
IDs[i]=getid('pic'+i);

if(NS4){
IDs[i].W=IDs[i].document.images["p"+i].width;
IDs[i].H=IDs[i].document.images["p"+i].height;
}
if(NS6 || IE4){
IDs[i].W=document.images["p"+i].width;
IDs[i].H=document.images["p"+i].height;
}

getnewprops(i);
moveidto(i ,0,240);//floater code changes
if(NS4)IDs[i].visibility = "show";
if(IE4 || NS6)IDs[i].style.visibility = "visible";
startfly=setInterval('moveimage('+i+')',Math.floor(Math.random()*15)+10);
}}



	function hidebubble(num)
	{
		//alert(num);
		//alert(bubblefloat.length);
	 //for(i=0; i<bubblefloat.length; i++)
	  //{
	  if (IE4)
	  eval("document.all.pic"+num+".style.visibility='hidden'");
	  else if (NS6)
	  document.getElementById("pic"+num).style.visibility='hidden';
	  else if (NS4)
	  eval("document.pic"+num+".visibility='hide'");
	  //clearInterval(startfly)
	  //}

	 }
	 function hidebubble1()
	{

	 for(i=0; i<bubblefloat.length; i++)
	  {
	
	  if (IE4)
	  eval("document.all.pic"+i+".style.visibility='hidden'")
	  else if (NS6)
	  document.getElementById("pic"+i).style.visibility='hidden'
	  else if (NS4)
	  eval("document.pic"+i+".visibility='hide'")
	
	  }

	 }

/*if (NS4||NS6||IE4){
window.onload=startfloat;
window.onresize=function(){ wind_w=getwindowwidth(); wind_h=getwindowheight(); }
}*/