var BrowserIE;
	var Browser = navigator.appName;
	var BrowserNS = navigator.appName;
	if(Browser.search("Explorer") != -1) 
		BrowserIE = true;
		else BrowserIE = false;
	if(Browser.search("Netscape") != -1)
		BrowserNS = true;
		else BrowserNS = false;

	function ShowQuickInfo(test) {
		var pos_x = event.clientX;
		var pos_y = event.clientY;
		
		if(BrowserIE) {
			document.all.quickinfo.style.setAttribute("top",pos_y + document.body.scrollTop + 16,"false");
			document.all.quickinfo.style.setAttribute("left",pos_x - 400 + window.scrollLeft,"false");
		}
		if(BrowserNS) {
			document.all.quickinfo.style.top=pos_y;
			document.all.quickinfo.style.left=pos_x;
		}
		//test = test.replace("'", '"');
		document.all.quickinfo.innerHTML = test;
		document.all.quickinfo.style.visibility="visible";
	}

	function HideQuickInfo() {
		document.all.quickinfo.style.visibility="hidden";
	}
