
var Str
function ShowTitle(p_Caption)
{
Str = p_Caption
if (parent.Banner.loaded == true) {  // the loaded variable is set
                                     // true by the Banner loaded=true event

    parent.Banner.blue.write('<SPAN CLASS=\'white\'>' + p_Caption + '</SPAN>' )

}
    else setTimeout('ShowTitle(Str)',100)  // if it's not loaded yet,
                                                      // call it again in 100ms
}

// The same as ShowTitle but addressing CLASS=WHITE2
function ShowTitle2(p_Caption)
{
Str = p_Caption
if (parent.Banner.loaded == true) {  // the loaded variable is set
                                     // true by the Banner loaded=true event

    parent.Banner.blue.write('<SPAN CLASS=\'white2\'>' + p_Caption + '</SPAN>' )

}
    else setTimeout('ShowTitle2(Str)',100)  // if it's not loaded yet,
                                                      // call it again in 100ms
}


function ShowWaterMark()
{
if (document.all)
document.body.style.cssText="background:white url('images/wm.jpg') no-repeat fixed center center"
}



