function getFlash(strName, width, height) {
    if (strName.charAt(0) == '/') {
        strName = 'http://images.bubbleroom.se' + strName;
    }
    else {
        strName = '/' + strName;
    }
    document.write('<object type="application/x-shockwave-flash" data="' + strName + '" width="' + width + '" height="' + height + '">\n');
    document.write('<param name="movie" value="' + strName + '" />\n');
    document.write('<param name="wmode" value="transparent">\n');
    document.write('</object>\n');
}
