// JavaScript Document
var a;
var ypos=0;
var height=0;
var Id=0;
var INNER='<table width="212" border="0" cellpadding="0" cellspacing="0" class="BORDER"><tr><td width="212" height="59" align="center" valign="middle" id="address_box" nowrap="nowrap"></td></tr></table>'
var index=0;

function SETH(y,h)
{
	if(document.layers)
	{
		document.addressbox.height=h;
		document.addressbox.top=y;		
	}

	if(document.all)
	{
		document.all.addressbox.style.height=h;
		document.all.addressbox.style.top=y;
	}
	
	if(!document.all && document.getElementById)
	{ 
		document.getElementById("addressbox").style.height=h+"px";
		document.getElementById("addressbox").style.top=y+"px";
	}
}
function STRECHHT()
{
	ypos=ypos-a-3;
	height=height+a
	//a-=1;
	SETH(ypos,height)
	if (height>=59)
	{
		
		window.clearTimeout(Id);Id=0;
		document.getElementById('addressbox').innerHTML=INNER
		document.getElementById('address_box').innerHTML=ADDRESS[index];
		document.getElementById('addressbox').style.background='';
	}
	else
	{
		Id = window.setTimeout("STRECHHT();",10);
	}
}
function STRECH()
{
	a=7;
	document.getElementById('addressbox').innerHTML='';
	if(!Id){STRECHHT();}
}
function SHOWMESSAGE(id)
{
	document.getElementById('addressbox').style.background='#E7ECF5'
	index=id;	
	ypos=event.clientY+20;
	SETPOS(event.clientX,event.clientY);
	document.getElementById('addressbox').style.visibility="visible"
	STRECH();
	
}


