<!-- Begin
delay = 0;    // time in seconds before popup opens
closetime = 0; // 0 = do not close, anything else = number of seconds

function move(id) {
  	var boxdiv = document.getElementById(id);
	pos = boxdiv.style.top; 
	if (parseInt(boxdiv.style.top)<=5) {
		boxdiv.style.top=parseInt(boxdiv.style.top)+10+"px"
		timer = setTimeout("move('hint')",10)
	}
	else { 
		if(closetime) setTimeout("Hide('hint');", closetime*1000);
	}
}

function Hide(id) {
  	var boxdiv = document.getElementById(id);
	 boxdiv.style.display='none';
    } 

function doPopup() {
	timer = setTimeout("move('hint')", delay*1000);
}
//  End -->
