// browser detectvar IE = document.all?true:falsefunction doPopUp(text){	if(IE)	{		// write the new properties to the div and...		document.all.popText.innerHTML = text;		// then position it appropriately		document.all.pop.style.left = ((event.clientX + document.body.scrollLeft) + 10);		document.all.pop.style.top = ((event.clientY + document.body.scrollTop) +10);		// then make it visible...		document.all.pop.style.visibility = "visible";	}	else	{		// do nothing, not programmed to work in Netscape	}}function popOut(){	if(IE)	{		document.all.pop.style.visibility = "hidden";	}	else	{		document.getElementById('pop').style.visibility = "hidden";	}}