﻿function loadFlashWithoutBorder(swf, width, height)
{    
    document.write('<object type="application/x-shockwave-flash" data="' + swf + '" width="' + width + '" height="' + height + '">\n');
    document.write('<param name="movie" value="' + swf + '" />\n');
    document.write('<param name="wmode" value="transparent" />\n');
    document.write('</object>\n');
    
}