// JavaScript DocumentisIE=document.all;isNN=!document.all&&document.getElementById;var X = 0var Y = 0var IE = document.all?true:falsefunction hidePlot(){  document.onmousemove = hidePlot;  thisPlot.style.visibility="hidden";}function showLayer(XCoord,YCoord){  	thisPlot.style.visibility="visible";	thisPlot.style.top = YCoord;	thisPlot.style.left = XCoord;}function getMouseXY(e) {if (!IE) document.captureEvents(Event.MOUSEMOVE)	document.onmousemove = getMouseXY;	  if (IE) {    X = event.clientX + document.body.scrollLeft    Y = event.clientY + document.body.scrollTop  } else {    X = e.pageX    Y = e.pageY  }    if (X < 0){X = 0}  if (Y < 0){Y = 0}    showLayer(X+10,Y+10);}function showPlot(Plot,Name,Desc,Price,Sold){  thisPlot=document.getElementById("plotLayer");  thisNumber=document.getElementById("plotNumber");  thisNumber.innerHTML = Plot;    thisName=document.getElementById("plotName");     if (Name != ""){  thisName.innerHTML = Name;  thisName.style.display="";  }  else  {  thisName.style.display="none";  }    thisDesc=document.getElementById("plotDesc");    if (Desc != ""){  thisDesc.innerHTML = Desc;  thisDesc.style.display="";  }  else  {  thisDesc.style.display="none";  }    if (Sold != "For Future Release"){  thisPrice=document.getElementById("plotPriceVal");  thisPrice.innerHTML = Price;  thisPrice.style.display="";  thisPrice=document.getElementById("plotPrice");  thisPrice.style.display="";  }  else  {  thisPrice=document.getElementById("plotPrice");  thisPrice.style.display="none";  }    thisSold=document.getElementById("plotSoldVal");  thisSold.innerHTML = Sold;    getMouseXY();}