// går til angitt frame i angitt(id) swf-film og stopper så avspillingen

function berntsGotoAndStop(frame) {

    //var swf = window.document.getElementById("bg");
    var swf = window.document.bg; // så sier Adobe...

    swf.GotoFrame(frame);
    swf.StopPlay();
}
