function checkfortasks (thedate, e) { theObject = document.getElementById("taskbox"); theObject.style.visibility = "visible"; var posx = 0; var posy = 0; posx = -200 + e.clientX + document.body.scrollLeft; posy = e.clientY + document.body.scrollTop; theObject.style.left = posx + "px"; theObject.style.top = posy + "px"; objID = "taskbox"; var obj = document.getElementById(objID); switch (thedate) { case "2010-9-11": obj.innerHTML ="
Arts Event Management
Sat, 11 Sep 2010 - Sun, 12 Sep 2010
"; break; case "2010-9-4": obj.innerHTML ="
HD Video with DSLR Workshop
Sat, 04 Sep 2010
"; break; } }