// ÇÃ·¡½ÃÆÄÀÏ ·ÎµåÇÏ±â
function swf_load(filename, widths, heights){
var strSwf = "";

strSwf += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="loadswf"';
strSwf += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"';
strSwf += 'width="'+widths+'" height="'+heights+'">';
strSwf += '<param name="movie" value="'+filename+'" />';
strSwf += '<param name="quality" value="high" />';
strSwf += '<embed src="'+filename+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"';
strSwf += 'type="application/x-shockwave-flash" width="'+widths+'" height="'+heights+'"></embed>';
strSwf += '</object>';

document.write(strSwf);
}

// ÇÃ·¡½ÃÆÄÀÏ ·ÎµåÇÏ±â(Åõ¸íÇÃ·¡½Ã)
function swf_load_clean(filename, widths, heights){
var strSwf = "";

strSwf += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="loadswf_clean"';
strSwf += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"';
strSwf += 'width="'+widths+'" height="'+heights+'">';
strSwf += '<param name="movie" value="'+filename+'" />';
strSwf += '<param name="quality" value="high" />';
strSwf += '<param name="WMode" value="Transparent" />';
strSwf += '<embed src="'+filename+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"';
strSwf += 'type="application/x-shockwave-flash" width="'+widths+'" height="'+heights+'"></embed>';
strSwf += '</object>';

document.write(strSwf);
}
