// insertFlash.js
 
//   fn = file name (swf)
//   w  = width
//   h  = height
function insertFlash(fn, w, h)
{
    document.write('<embed width="' + w + '" height="' + h + '" menu="true" loop="true" play="true" src="' + fn + '" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed>');
    
    return true;
}