<!--
function displayPreview(note) {
	if(pObj = elementExist("catalog_mo_box")) {
		pObj.style.display = "block";
		pObj.style.visibility = "visible";
		pObj.innerHTML = note;
		}
	}
function hidePreview() {
	if(pObj = elementExist("catalog_mo_box")) {
		pObj.style.display = "none";
		pObj.style.visibility = "hidden";
		pObj.innerHTML = "";
		}
	}
function movePreview() {
	if(pObj = elementExist("catalog_mo_box")) {
		if(!pObj.style.visibility) {
			pObj.style.visibility = "hidden";
			}
		pObj.style.left = (parseInt(mouseX)+10)+"px";
		pObj.style.top = parseInt(mouseY)+"px";
		}
	}
getMouseCoordinates = new Function("evt",getCombinedFunctionCode(getMouseCoordinates,movePreview));
//-->