function writeSWFtag (strSWFFile, intWidth, intHeight) {
    document.write('<object type="application/x-shockwave-flash" data="' + strSWFFile + '" ');
    document.write('width="' + intWidth + '" height="' + intHeight + '">');
    document.write('<param name="movie" value="' + strSWFFile + '"></object>');
}

