document.write('<!'+'-- Start  ToolTip functionality --'+'>\n<style>\n .tooltipcss \n{\n    visibility: hidden; \n    position: absolute; \n    top: 0;  \n    left: 0; \n    z-index: 10; \n\n    font: normal 8pt sans-serif; \n    padding: 3px; \n    border: solid 1px;\n\tbackground-color:#ffffff;\n    text-align:left;\n}\n<\/style>\n<script>\nvar _storeMultiple =new Array();\nfunction tooltip(tooltipId, posX, posY)\n{\n    \n     this.ttid=document.getElementById(tooltipId);\n    var rndnumber=Math.random();\n    var rndid=\"hlpspan_\"+rndnumber;\n\tif ( (_storeMultiple.join(\"|\") ).indexOf(tooltipId)>=0){\n\t\tvar tmpTTDivID=tooltipId +\"_\"+rndnumber;\n\t\tvar tmpcurrdiv =document.getElementById(tooltipId);\n\t\tvar cloneDiv = tmpcurrdiv.cloneNode(true);\n\t\tcloneDiv.id = tmpTTDivID;\n\n\t\tvar containerDiv =document.getElementById(\'tooltipParentDiv\');\n\t\tcontainerDiv.appendChild(cloneDiv);\n\t\tthis.ttid =cloneDiv;\n\t\n\t\n\t}\t\n\t_storeMultiple.push(this.ttid.id)\n\n\n    var img = document.createElement(\'img\');\n    img.src = \'\/images\/question_mark.png\';\n    var spn=\'<span id=\"\'+rndid+\'\"><\/span>\'\n    document.write(spn)\n    document.getElementById(rndid).appendChild(img);\n    this.helpicon=img;\n    this.helpicon.onmouseover=function(){\n    self.show();\n    }\n    this.helpicon.onmouseout=function(){\n    self.hide();\n    }\n\n    var self=this;\n\n    this.show=function(){\n\n    \n    if ((this.ttid.style.top == \'\' || this.ttid.style.top == 0) \n        && (this.ttid.style.left == \'\' || this.ttid.style.left == 0))\n    {\n        \/\/ need to fixate default size (MSIE problem)\n        this.ttid.style.width = this.ttid.offsetWidth + \'px\';\n        this.ttid.style.height = this.ttid.offsetHeight + \'px\';\n        \n    \n        \/\/ if tooltip is too wide, shift left to be within parent \n        if (posX + this.ttid.offsetWidth >  this.helpicon.offsetWidth) \n            posX =  this.helpicon.offsetWidth - this.ttid.offsetWidth;\n        if (posX < 0 ) posX = 0; \n        var xypos =this.xstooltip_findPos(img)\n   \n       this.ttid.style.top = xypos[1] + posY + \'px\';\n       this.ttid.style.left = xypos[0] + posX + \'px\';\n    }\n    \n    this.ttid.style.visibility = \'visible\'; \n    }\n\n  this.xstooltip_findPos=function(){\n      var arr=new Array(0,0);\n      \n      if (this.helpicon.offsetParent) {\n        while (this.helpicon.offsetParent){\n                arr[0] += this.helpicon.offsetLeft\n                arr[1] += this.helpicon.offsetTop\n                this.helpicon = this.helpicon.offsetParent;\n            }\n        }\n        else if (this.helpicon.x)\n            arr[0] += this.helpicon.x;\n         else if (this.helpicon.y)\n            arr[1] += this.helpicon.y;\n        return arr;\n      \n  }\n  this.hide=function()\n    {\n    this.ttid.style.visibility = \'hidden\'; \n    }\n}\n<\/script>\n<!'+'-- End  ToolTip functionality --'+'>\n\n<!'+'-- Start  Individual tooltip content --'+'>\n<div id=\"hlp_windows\" class=\"tooltipcss\">\n       <B>Operating System:<\/B> XP, Vista or Windows 7<br>\n\t<B>Browser:<\/B> Internet Explorer 6.0 or higher<BR>\n\n\t<B>Internet Connection:<\/B> Required for updates, state<br>downloads, e-file and other product features<br>\n\t<B>Hard-disk Space:<\/B> 170 MB for H&R Block At Home<br>\n\t55 MB for DeductionPro<br>\n\t<B>CD-ROM Drive:<\/B> 2X CD-ROM drive<BR>\n\t<B>Monitor:<\/B> 1024x768, SVGA color monitor<BR>\n\t<B>Printer:<\/B> Compatible ink jet or laser<BR>\n\t<B>Speakers & Sound Card:<\/B> For videos\/flash animation<BR>\n <\/div> \n <div id=\"hlp_mac\" class=\"tooltipcss\">\n       <B>Operating System:<\/B> OS X (10.4.11 or higher)<br>\n\t<B>Browser:<\/B> Safari 3 or higher<BR>\n\n\t<B>Internet Connection:<\/B> Required for updates, state<br>downloads, e-file and other product features<br>\n\t<B>Hard-disk Space:<\/B>: 170 MB for H&R Block At Home<br>\n\t55 MB for DeductionPro<br>\n\t<B>CD-ROM Drive:<\/B> 2X CD-ROM drive<BR>\n\t<B>Monitor:<\/B>\t1024x768, SVGA color monitor<BR>\n\t<B>Printer:<\/B>\tCompatible ink jet or laser<BR>\n\t<B>Speakers & Sound Card:<\/B> For videos\/flash animation<BR>\n <\/div> \n\n <span id=\"tooltipParentDiv\" style=\"height:0px;\">\n <\/span>');
