<!--
var objBubble = new Image();
objBubble.src = "images/bubble.gif";

var wHandle;
var iBubble = 500;

var ns4=document.layers?1:0
var ns6=document.getElementById&&!document.all?1:0 
var ie=document.all?1:0

function fLoadBubbles()
{
	if (ie)
	{
		imgBubble.src = objBubble.src;
	}
	else
	{
		document.imgBubble.src = objBubble.src;
	}
}

function fPosBubbles(iIter)
{
	if (ie)
	{
		var objBubble = imBubble;
	}
	else
	{
		var objBubble = document.getElementById("imBubble");
	}

	if (iIter == 1 | iIter == 0)
	{
		fDispBubble(objBubble, String(document.body.offsetHeight/2 - 100), String(150));
		if (iIter > 0)
		{
			window.setTimeout("fPosBubbles(2)", iBubble);
			return;
		}
	}
}

function fDispBubble(obj, sTop, sLeft)
{
	obj.style.display = "";
	if (ie)
	{
		obj.style.posTop = sTop;
		obj.style.posLeft = sLeft;
		obj.style.zIndex = 9999;
	}
	else
	{
		obj.style.top = sTop;
		obj.style.left = sLeft;
		obj.style.zIndex = 9999;
	}
}

function fResize()
{
	fPosBubbles(0);
}

function fNextBack(obj, sImg)
{
	obj.src = sImg;
}

function fGo(iIndex)
{
	if (ie)
	{
		frames("dlMain").document.location.replace("compliments.asp?COMP_NUM=" + iIndex);
	}
	else
	{
		var obj = document.getElementById("dlMain");
		obj.src = "compliments.asp?COMP_NUM=" + iIndex;
	}
}

function fDownloadComplete(sContent, iIndex)
{
	if (ie)
	{
		var obj = tdCompDisp;
	}
	else
	{
		var obj = document.getElementById("tdCompDisp");
	}
	obj.innerHTML = unescape(sContent);
	window.setTimeout("fGo(" + iIndex + ")", 7000);
}
//->