	self.onError=null;
	tracqcurrentX = tracqcurrentY = 0;  
	tracqwhichIt = null;   
    tracqlastScrollX = 0; tracqlastScrollY = 0;
	tracqNS = (document.layers) ? 1 : 0;
	tracqIE = (document.all) ? 1: 0;

	function tracqhidenbox(tracqo)
	{
		if(tracqo.style.visibility == "hidden")
		{
			tracqo.style.visibility = "visible";
		}
		else
		{
			tracqo.style.visibility = "hidden";
		}
	}	
	function tracqhidenbox1(o2,p2)
    {
            o2.style.visibility = "hidden";
            p2.style.visibility = "hidden";
    }
	function timevisible()
	{
		if(document.all.Home_Online.style.visibility != "visible")
		{
				document.all.Home_Online.style.visibility == "visible";
		}
	}
	function tracqheartBeat() 
	{	
		var tracqdiffY=0;
		var tracqdiffX=0;
		if(tracqIE) 
		{ 
			try
			{		
			tracqdiffY = document.body.scrollTop;			
			tracqdiffX = document.body.scrollLeft;
			}catch(e){}
		}			
	    if(tracqNS)
	    {
			tracqdiffY = self.pageYOffset;
			tracqdiffX = self.pageXOffset;
		}
		if(tracqdiffY != tracqlastScrollY) {
			tracqpercent = .1 * (tracqdiffY - tracqlastScrollY);
	        if(tracqpercent > 0) tracqpercent = Math.ceil(tracqpercent);
	        else tracqpercent = Math.floor(tracqpercent);
	        if(tracqIE) document.all.Home_Online.style.pixelTop += tracqpercent;
			if(tracqNS) document.Home_Online.top += tracqpercent;
			tracqlastScrollY = tracqlastScrollY + tracqpercent;
	    }
		if(tracqdiffX != tracqlastScrollX) {
			tracqpercent = .1 * (tracqdiffX - tracqlastScrollX);
			if(tracqpercent > 0) tracqpercent = Math.ceil(tracqpercent);
			else tracqpercent = Math.floor(tracqpercent);
			if(tracqIE) document.all.Home_Online.style.pixelLeft += tracqpercent;
			if(tracqNS) document.Home_Online.left += tracqpercent;
			tracqlastScrollX = tracqlastScrollX + tracqpercent;
		}	
	}	
	function tracqcheckFocus(x,y) { 
	        tracqstalkerx = document.Home_Online.pageX;
	        tracqstalkery = document.Home_Online.pageY;
	        tracqstalkerwidth = document.Home_Online.clip.width;
	        tracqstalkerheight = document.Home_Online.clip.height;
	        if( (x > tracqstalkerx && x < (tracqstalkerx+tracqstalkerwidth)) && (y > tracqstalkery && y < (tracqstalkery+tracqstalkerheight))) 
			return true;
	        else 
			return false;
	}	
	function tracqgrabIt(e)
	{
	if(tracqIE) {
			
			tracqwhichIt = event.srcElement;
			while (tracqwhichIt.id.indexOf("Home_Online") == -1) {
				tracqwhichIt = tracqwhichIt.parentElement;
				if (tracqwhichIt == null) 
				{
					document.onmousemove = null;
					document.onmouseup = null;
					return true;
				}
				else
				{
					tracqcurrentX = (event.clientX + document.body.scrollLeft);
	   				tracqcurrentY = (event.clientY + document.body.scrollTop); 
	   				document.onmousemove = tracqmoveIt;
					document.onmouseup = tracqdropIt;
					
				}
				
		    }
			
	   		
		} else { 
	        	window.captureEvents(Event.MOUSEMOVE);
	        if(tracqcheckFocus (e.pageX,e.pageY)) { 
	                tracqwhichIt = document.Home_Online;
	                tracqStalkerTouchedX = e.pageX-document.Home_Online.pageX;
	                tracqStalkerTouchedY = e.pageY-document.Home_Online.pageY;
	        } 		}
	    return true;
	}
	function tracqmoveIt(e) {
		if (tracqwhichIt == null) { return false; }
		if(tracqIE) 
		{
		    tracqnewX = (event.clientX + document.body.scrollLeft);
		    tracqnewY = (event.clientY + document.body.scrollTop);
		    tracqdistanceX = (tracqnewX - tracqcurrentX);    tracqdistanceY = (tracqnewY - tracqcurrentY);		    tracqcurrentX = tracqnewX;    tracqcurrentY = tracqnewY;
		    tracqwhichIt.style.pixelLeft += tracqdistanceX;		    tracqwhichIt.style.pixelTop += tracqdistanceY;
			if(tracqwhichIt.style.pixelTop < document.body.scrollTop) tracqwhichIt.style.pixelTop = document.body.scrollTop;			if(tracqwhichIt.style.pixelLeft < document.body.scrollLeft) tracqwhichIt.style.pixelLeft = document.body.scrollLeft;
			if(tracqwhichIt.style.pixelLeft > document.body.offsetWidth - document.body.scrollLeft - tracqwhichIt.style.pixelWidth - 20) tracqwhichIt.style.pixelLeft = document.body.offsetWidth - tracqwhichIt.style.pixelWidth - 20;
			if(tracqwhichIt.style.pixelTop > document.body.offsetHeight + document.body.scrollTop - tracqwhichIt.style.pixelHeight - 5) tracqwhichIt.style.pixelTop = document.body.offsetHeight + document.body.scrollTop - tracqwhichIt.style.pixelHeight - 5;
			event.returnValue = false;
		} 
		else 
		{
			tracqwhichIt.moveTo(e.pageX-tracqStalkerTouchedX,e.pageY-tracqStalkerTouchedY);
	        	if(tracqwhichIt.left < 0+self.pageXOffset) tracqwhichIt.left = 0+self.pageXOffset;
	        	if(tracqwhichIt.top < 0+self.pageYOffset) tracqwhichIt.top = 0+self.pageYOffset;
	        	if( (tracqwhichIt.left + tracqwhichIt.clip.width) >= (window.innerWidth+self.pageXOffset-17)) tracqwhichIt.left = ((window.innerWidth+self.pageXOffset)-tracqwhichIt.clip.width)-17;
	        	if( (tracqwhichIt.top + tracqwhichIt.clip.height) >= (window.innerHeight+self.pageYOffset-17)) tracqwhichIt.top = ((window.innerHeight+self.pageYOffset)-tracqwhichIt.clip.height)-17;
	        	return false;
		}
	    return false;
	}
	function tracqdropIt() {
		tracqwhichIt = null;
	    if(tracqNS) window.releaseEvents(Event.MOUSEMOVE);
	    return true;
	}
	if(tracqNS) {
		window.captureEvents(Event.MOUSEUP|Event.MOUSEDOWN);
		window.onmousedown = tracqgrabIt;
	 	window.onmousemove = tracqmoveIt;
		window.onmouseup = tracqdropIt;
	}
	if(tracqIE) 
	{
		document.onmousedown = tracqgrabIt;
	}
	if(tracqNS || tracqIE) action = window.setInterval("tracqheartBeat()",1);

	self.onError=null;
	currentX = currentY = 0;  
	whichIt = null;   
        	lastScrollX = 0; lastScrollY = 0;
	NS = (document.layers) ? 1 : 0;
	IE = (document.all) ? 1: 0;

	function hidenbox(o)
	{
		if(o.style.visibility == "hidden")
		{
			o.style.visibility = "visible";
		}
		else
		{
			o.style.visibility = "hidden";
		}
		document.all.Home_Online_lcf.style.visibility ="hidden";
                o.style.visibility = "hidden";
	}
	function hidenbox1(o,p)
    {
            o.style.visibility = "hidden";
            //p.style.visibility = "hidden";
    }

	function timevisible()
	{
		if(document.all.Home_Online.style.visibility != "visible")
		{
	//		document.all.Home_Online.style.visibility == "visible";
		}
	}
	function heartBeat() 
	{
		if(IE) 
		{ 
			diffY = document.body.scrollTop; 
			diffX = document.body.scrollLeft; 
		}
	    	if(NS) 
		{ 
			diffY = self.pageYOffset; 
			diffX = self.pageXOffset; 
		}
		if(diffY != lastScrollY) 
		{	                
			percent = .1 * (diffY - lastScrollY);
	                if(percent > 0) 
			{
				percent = Math.ceil(percent);
			}
	                else 
				percent = Math.floor(percent);					
			
			if(IE) 
			{
				if(document.all.Home_Online.style.pixelTop <600 && document.all.Home_Online.style.pixelTop > 100) 
				{
					document.all.Home_Online.style.pixelTop += percent/5;
					//document.all.Home_Online.style.pixelTop = 100;
				}
			}
					
			if(NS) document.Home_Online.top += percent; 	                
			lastScrollY = lastScrollY + percent;
	    	}
		if(diffX != lastScrollX) 
		{
			percent = .1 * (diffX - lastScrollX);
			if(percent > 0) percent = Math.ceil(percent);
			else percent = Math.floor(percent);
			if(IE) document.all.Home_Online.style.pixelLeft += percent;
			if(NS) document.Home_Online.left += percent;
			lastScrollX = lastScrollX + percent;
		}	
	}	
	function checkFocus(x,y) { 
	        stalkerx = document.Home_Online.pageX;
	        stalkery = document.Home_Online.pageY;
	        stalkerwidth = document.Home_Online.clip.width;
	        stalkerheight = document.Home_Online.clip.height;
	        if( (x > stalkerx && x < (stalkerx+stalkerwidth)) && (y > stalkery && y < (stalkery+stalkerheight))) 
			return true;
	        else 
			return false;
	}	
	function grabIt(e)
	{
	if(IE) {
			
			whichIt = event.srcElement;
			while (whichIt.id.indexOf("Home_Online") == -1) {
				whichIt = whichIt.parentElement;
				if (whichIt == null) 
				{
					document.onmousemove = null;
					document.onmouseup = null;
					return true;
				}
				else
				{
					//whichIt.style.pixelLeft = whichIt.offsetLeft;
		    			//whichIt.style.pixelTop = whichIt.offsetTop;
					currentX = (event.clientX + document.body.scrollLeft);
	   				currentY = (event.clientY + document.body.scrollTop); 
	   				document.onmousemove = moveIt;
					document.onmouseup = dropIt;
					
				}
				
		    }
			
	   		
		} else { 
	        	window.captureEvents(Event.MOUSEMOVE);
	        if(checkFocus (e.pageX,e.pageY)) { 
	                whichIt = document.Home_Online;
	                StalkerTouchedX = e.pageX-document.Home_Online.pageX;
	                StalkerTouchedY = e.pageY-document.Home_Online.pageY;
	        } 		}
	    return true;
	}
	function moveIt(e) {
		if (whichIt == null) { return false; }
		if(IE) 
		{
		    newX = (event.clientX + document.body.scrollLeft);
		    newY = (event.clientY + document.body.scrollTop);
		    distanceX = (newX - currentX);    distanceY = (newY - currentY);		    currentX = newX;    currentY = newY;
		    whichIt.style.pixelLeft += distanceX;		    whichIt.style.pixelTop += distanceY;
			if(whichIt.style.pixelTop < document.body.scrollTop) whichIt.style.pixelTop = document.body.scrollTop;			if(whichIt.style.pixelLeft < document.body.scrollLeft) whichIt.style.pixelLeft = document.body.scrollLeft;
			if(whichIt.style.pixelLeft > document.body.offsetWidth - document.body.scrollLeft - whichIt.style.pixelWidth - 20) whichIt.style.pixelLeft = document.body.offsetWidth - whichIt.style.pixelWidth - 20;
			if(whichIt.style.pixelTop > document.body.offsetHeight + document.body.scrollTop - whichIt.style.pixelHeight - 5) whichIt.style.pixelTop = document.body.offsetHeight + document.body.scrollTop - whichIt.style.pixelHeight - 5;
			event.returnValue = false;
		} 
		else 
		{
			whichIt.moveTo(e.pageX-StalkerTouchedX,e.pageY-StalkerTouchedY);
	        	if(whichIt.left < 0+self.pageXOffset) whichIt.left = 0+self.pageXOffset;
	        	if(whichIt.top < 0+self.pageYOffset) whichIt.top = 0+self.pageYOffset;
	        	if( (whichIt.left + whichIt.clip.width) >= (window.innerWidth+self.pageXOffset-17)) whichIt.left = ((window.innerWidth+self.pageXOffset)-whichIt.clip.width)-17;
	        	if( (whichIt.top + whichIt.clip.height) >= (window.innerHeight+self.pageYOffset-17)) whichIt.top = ((window.innerHeight+self.pageYOffset)-whichIt.clip.height)-17;
	        	return false;
		}
	    return false;
	}
	function dropIt() {
		whichIt = null;
	    if(NS) window.releaseEvents(Event.MOUSEMOVE);
	    return true;
	}
	if(NS) {
		window.captureEvents(Event.MOUSEUP|Event.MOUSEDOWN);
		window.onmousedown = grabIt;
	 	window.onmousemove = moveIt;
		window.onmouseup = dropIt;
	}
	if(IE) 
	{
		document.onmousedown = grabIt;
	 	//document.onmousemove = moveIt;
		//document.onmouseup = dropIt;
	}
	if(NS || IE) action = window.setInterval("tracqheartBeat()",1);



function GetObj(id)
{
        if (document.getElementById)
                return document.getElementById(id);
        else
        if (document.all)
        return document.all(id);
}

var floatHtml=null;
var floatHtml1=null;
var isDeleted=false;
var strcontent='';

ImageTimer();
function ImageTimer()
{
	if(GetObj('Home_Online') == null)
	{
	}
	else
	{
        strcontent=strhtmlcontent;
        timer1=setTimeout('ImageTimer()', 250)
        if (true)
        {
                if(!isDeleted)
                        {

                                if(floatHtml==null)
                                floatHtml=GetObj('Home_Online').innerHTML;
                                if(GetObj('Home_Online').innerHTML.indexOf('images')==-1)
                                {

                                        GetObj('Home_Online').innerHTML=strcontent;
                                         clearTimeout(timer1);
                                }
                              
                        }
        }
	}


}
if(GetObj('Home_Online') != null)
{
if(showflag>0)
{
	if(showflag > 20 ) showflag = 20;
	var strcontent1=strhtmlcontent1;
	delay();
}
}
var dflag=0;
function delay()
{
	
dflag=dflag+1;	

timer=setTimeout('delay()', 1000);
strcontent1=strhtmlcontent1;
  if(floatHtml1==null)
       floatHtml1=GetObj('Home_Online_lcf').innerHTML;
  if(GetObj('Home_Online_lcf').innerHTML.indexOf('zooimags')==-1)
       {
            GetObj('Home_Online_lcf').innerHTML=strcontent1;
       }
if(dflag==showflag)
{
 	
  if(document.all.Home_Online_lcf.style.visibility != "visible")
  {
    document.all.Home_Online_lcf.style.visibility ="visible";
  }
  clearTimeout(timer);
}	
}
