function flashWrite(i, f, w, h)
{
var script ='<object style="margin:0px; padding:0px;" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6.0.65.0" width="'+w+'" height="'+h+'">\n';
script +='<param name="movie" value="'+f+'" />\n';
script +='<param name="quality" value="high" />\n';
script +='<param name="wmode" value="transparent">\n';
script +='<embed src="'+f+'" width="'+w+'" height="'+h+'" quality="high" wmode="transparent" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" scale="noscale">\n';
script +='</embed>\n';
script +='</object>\n';
var id = i;
x = document.getElementById(id);
x.innerHTML = '';
x.innerHTML = script;
}
function flashWriteIntro(i)
{
var script ='<object style="margin:0px; padding:0px;" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6.0.65.0" width="550" height="686">\n';
script +='<param name="movie" value="intro.swf" />\n';
script +='<param name="quality" value="high" />\n';
script +='<param name="wmode" value="transparent">\n';
script +='<embed src="intro.swf" width="550" height="686" quality="high" wmode="transparent" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" scale="noscale">\n';
script +='</embed>\n';
script +='</object>\n';
var id = i;
x = document.getElementById(id);
x.innerHTML = '';
x.innerHTML = script;
}
function flashWriteTitlu(i, m)
{
var script ='<object style="margin:0px; padding:0px;" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6.0.65.0" width="100%" height="40">\n';
script +='<param name="movie" value="titlualb.swf?t='+m+'" />\n';
script +='<param name="quality" value="high" />\n';
script +='<param name="wmode" value="transparent">\n';
script +='<embed src="titlualb.swf?t='+m+'" width="100%" height="40" quality="high" wmode="transparent" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" scale="noscale">\n';
script +='</embed>\n';
script +='</object>\n';
var id = i;
x = document.getElementById(id);
x.innerHTML = '';
x.innerHTML = script;
}
