/*
**********************************************************************************************************************

Script:     default.js
Created:    David Hood, 2008.03.21
Function:   Main script library for DRay.ca
Changes:    <YYYY.MM.DD>    <Author ID>     <Change>

=======================================================================================================================

Copyright (C) 2008 by David Hood, Pitt Meadows, BC
This work is a private literary publication and is protected under Canadian copyright laws.

**********************************************************************************************************************
*/


// Highlights a specific button
function fHighlight(oImage, bOn)
{
    if (bOn) 
    {
        oImage.src = oImage.src.replace("_off.jpg", "_on.jpg");
    }
    else
    {
        oImage.src = oImage.src.replace("_on.jpg", "_off.jpg");
    }
}


// Links to a specific article
function fLink(sPage)
{
    document.location="./index.php?link=" + sPage;
}

