    function fnShowLinkHelp(obj)
    {
        var nDex = null;
        nDex = parseInt(obj.id);
        var coords = fnFindPos(obj);
        var oDiv = document.getElementById("divHelp");
        oDiv.style.display = "inline";
        oDiv.style.left = parseInt(coords[0]) + 35;
        oDiv.style.top =  parseInt(coords[1]) + 12;
        document.getElementById("helpContent").innerHTML = asLinkHelp[nDex];
    }
    
    function fnHideHelp()
    {
            //fnPause(500);
            var oDiv = document.getElementById("divHelp");
            oDiv.style.display = "none";
    }
    
    function fnPause(milliSec) 
    {
        var date = new Date();
        var curDate = null;

        do
        {
            curDate = new Date();
        }while(curDate-date < milliSec);
    } 
    
    function fnFindPos(obj)
    {
	    var curleft = curtop = 0;
	    if (obj.offsetParent)
	    {
		    do
		    {
			    curleft += obj.offsetLeft;
			    curtop += obj.offsetTop;
		    } while (obj = obj.offsetParent);
	    }
	    return [curleft,curtop];
    }
    
    var asLinkHelp = new Array();
    asLinkHelp[0] = "<img src='Pictures/bro_dana_photo.jpg' style='width:119px; height:175px;' alt='' /><br/><span class='linkTitle'>Bro. Dana Williams</span><br /><a href='http://evangelistdanawilliams.com/index.html'>Sower Of The Seed Ministry</a><br /><br /><a href='http://www.liberty-baptist.net/williams.html' target='_BLANK'>Bro. Dana's Sermons</a><br /><br />";
    asLinkHelp[1] = "<img src='graphics/amazinggrace.jpg' style='height:75px; width:245px;' alt='' /><br /><span class='linkTitle'>Amazing Grace Baptist Church</span><br />Pastor: Bro. David Phillips<br />Location: Wedowee, Al.<br /><br />Service Times:<br />&nbsp;&nbsp;&nbsp;10:00 am Sunday Morning<br/>&nbsp;&nbsp;&nbsp;5:00 pm Sunday Evening<br/>&nbsp;&nbsp;&nbsp;6:00 pm Wednesday Evening<br/>All times are Central Time.<br/><br/><a href='http://www.amazinggracebaptist.net/directions.html' target='_BLANK'>Driving Directions</a><br/><br />";
    asLinkHelp[2] = "<img src='Pictures/bro_tom_photo.jpg' style='width:141px; height:175px;' alt='' /><br /><span class='linkTitle'>Bro. Tom Gilliam</span><br /><a href='http://www.TomGilliam.com'>Bible Truth Ministry</a><br /><br /><a href='http://www.liberty-baptist.net/gilliam.html' target='_BLANK'>Bro. Tom's Sermons</a><br /><br />";
    asLinkHelp[3] = "<img src='graphics/berachah_logo2.jpg' style='height:75px; width:141px;' alt='' /><br /><span class='linkTitle'>Berachah Baptist Church</span><br />Pastor: Bro. Jamie Rollins<br />Location: Temple, Ga.<br /><br />Service Times:<br />&nbsp;&nbsp;&nbsp;10:00 am Sunday Morning<br/>&nbsp;&nbsp;&nbsp;11:00 am Sunday Morning Worship<br/>&nbsp;&nbsp;&nbsp;6:00 pm Sunday Evening<br/>&nbsp;&nbsp;&nbsp;7:00 pm Wednesday Evening<br/><br/><br/><a href='http://www.berachahbaptist.org/contact.php' target='_BLANK'>Driving Directions</a><br/><br />";
    asLinkHelp[4] = "<img src='graphics/rejoice891_logo.jpg' style='width:245px; height:82px;' alt='' /><br /><span class='linkTitle'>Rejoice 89.1 FM</span><br />Heflin, Al.<br/><br />Rejoice 89.1 seeks to uplift and glorify the name of Jesus Christ in Eastern Alabama,Western Georgia, and through the internet, the world.<br/><br/><a href='http://www.rejoice891.com/'>Rejoice 89.1 FM</a><br /><br />";
    asLinkHelp[5] = "<img src='graphics/thekjvstore_logo.jpg' style='height:68px; width:245px;' alt='' /><br /><span class='linkTitle'>The KJV Store</span><br /><br />Specializing in a King Sized collection of<br/>King James Version Bibles, this is a KJV<br/>site for those with a KJV conviction.<br/><br/>They do not sell any versions of the<br/>Holy Bible other than the Authorized<br/>King James of 1611.<br/><br/><a href='http://www.thekjvstore.com/index.php' target='_BLANK'>The KJV Store</a><br /><br />";
    asLinkHelp[6] = "<img src='Pictures/bro_ricky_dunsford.jpg' style='width:119px; height:150px;' alt='' /><br /><span class='linkTitle'>Bro. Ricky Dunsford<br/>Rock Of Ages Prison Ministry</span><br /><br/>Their Vision - To influence every correctional/educational facility in the world for Christ by providing a ministry characterized by integrity and excellence, one that is uniquely designed to meet the needs of the correctional/educational staff and clientele.<br/><br/><a href='http://www.roapm.com/'>Rock Of Ages Prison Ministry</a><br /><br />";
    asLinkHelp[7] = "<br /><br />";
    asLinkHelp[8] = "<img src='Pictures/bro_dean_mcneese.jpg' style='width:137px; height:180px;' alt='' /><br /><span class='linkTitle'>Bro. Dean McNeese<br/></span><br/>Carrying the Old Mantle into the New Millenium.<br/><br/><a href='http://www.deanmcneese.com/text/index.html'>Bro. Dean McNeese</a><br /><br />";
    asLinkHelp[9] = "<br /><br />";
    
