
//---------- Swap Image Functions ----------
function funcSwapImageIn( strTheImageName, strTheNewImageFile )
{
    if (document.images)
    {
	eval("document." + strTheImageName + ".src = 'images/" + strTheNewImageFile + "'");
    }
}

function funcSwapImageOut( strTheImageName, strTheNewImageFile )
{
    if (document.images)
    {
	eval("document." + strTheImageName + ".src = 'images/" + strTheNewImageFile + "'");
    }
}


//---------- Status Bar Functions --------------
function funcDisplayStatusBarText(strTheText)
{
	window.status = strTheText;
}

function eraseStatusBarText()
{
	window.status = '';
}
