function flashnotice()
{
    if($('myBox'))
    {
        var myBox = new GlassBox();
        myBox.init( 'myBox', '460px', '201px', 'hidden', 'facebookstyle', true, true );
        myBox.lbo( true, 0.00 );
        myBox.appear();
    }
}

function init()
{
    flashnotice()
}

Event.observe(window, 'load', init, false);