﻿// JScript File


function WriteFlash(File, height, width )
{
    var objFlash;
    objFlash = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
    objFlash += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ';
    objFlash += 'height="' + height + '" width="' + width + '">';
    objFlash += '       <param name="movie" value="' + File + '" />';
    objFlash += '       <param name="quality" value="best" />';
    objFlash += '       <param name="play" value="true" />';
    objFlash += '       <embed height="' + height + '" pluginspage="http://www.macromedia.com/go/getflashplayer" ';
    objFlash += '           src="' + File + '" type="application/x-shockwave-flash" ';
    objFlash += '           width="' + width + '" quality="best" play="true"></embed> ';
    objFlash += '   </object>';
    document.write (objFlash);
					
}