/**
 * mm_menu 20MAR2002 Version 6.0
 * Andy Finnell, March 2002
 * Copyright (c) 2000-2002 Macromedia, Inc.
 *
 * based on menu.js
 * by gary smith, July 1997
 * Copyright (c) 1997-1999 Netscape Communications Corp.
 *
 * Netscape grants you a royalty free license to use or modify this
 * software provided that this copyright notice appears on all copies.
 * This software is provided "AS IS," without a warranty of any kind.
 */
var _o_qq = null;
var _tm_qq = null;
function moveDiv(){
	var b = document.documentElement;
	_o_qq.style.left = b.clientWidth - _o_qq.clientWidth - 5 + "px";
	var difTop = parseInt(_o_qq.style.top) - b.scrollTop - b.clientHeight + _o_qq.clientHeight + 100;
	if(difTop != 0){
		_o_qq.style.top = parseInt(_o_qq.style.top) - parseInt(difTop/20) + 1 + 'px';
		_tm_qq = setTimeout("moveDiv()",20);
	}else{
		if(_o_qq.style.display=="block")_tm_qq = setTimeout("moveDiv()",500);
	}
}
function startQQ(id){
	_o_qq = document.getElementById(id);
	_o_qq.style.display = "block";
	_o_qq.style.top = "-200px";
	_tm_qq = setTimeout("moveDiv()",0);
}
function closeQQ(){
	_o_qq.style.display = "none";
}
startQQ("qqDiv");
