﻿// JScript File
function swf(src,w,h,id)
{ 
    html = ''; 
    html += '<OBJECT id="' + id + '" codeBase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"';
    html += 'height="'+h+'" width="'+w+'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">';
    html += '<PARAM NAME="_cx" VALUE="4154">';
    html += '<PARAM NAME="_cy" VALUE="4789">';
    html += '<PARAM NAME="FlashVars" VALUE="">';
    html += '<PARAM NAME="Movie" VALUE="'+src+'">';
    html += '<PARAM NAME="Src" VALUE="'+src+'">';
    html += '<PARAM NAME="WMode" VALUE="transparent">';
    html += '<PARAM NAME="Play" VALUE="-1">';
    html += '<PARAM NAME="Loop" VALUE="-1">';
    html += '<PARAM NAME="Quality" VALUE="High">';
    html += '<PARAM NAME="SAlign" VALUE="">';
    html += '<PARAM NAME="Menu" VALUE="-1">';
    html += '<PARAM NAME="Base" VALUE="">';
    html += '<PARAM NAME="AllowScriptAccess" VALUE="always">';
    html += '<PARAM NAME="Scale" VALUE="ShowAll">';
    html += '<PARAM NAME="DeviceFont" VALUE="0">';
    html += '<PARAM NAME="EmbedMovie" VALUE="0">';
    html += '<PARAM NAME="BGColor" VALUE="">';
    html += '<PARAM NAME="SWRemote" VALUE="">';
    html += '<PARAM NAME="MovieData" VALUE="">';
    html += '<PARAM NAME="SeamlessTabbing" VALUE="1">';
    html += '<PARAM NAME="Profile" VALUE="0">';
    html += '<PARAM NAME="ProfileAddress" VALUE="">';
    html += '<PARAM NAME="ProfilePort" VALUE="0">';
    html += '<embed src="'+src+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"';
    html += '	type="application/x-shockwave-flash" width="'+w+'" height="'+h+'"> </embed>';
    html += '</OBJECT>'; 
    document.write(html); 
} 








