
function swf(url,width,height) { /* Åõ¸íµµ ³ÖÀ½ */
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="'+width+'" height="'+height+'">');
	document.write('<param name=movie value="'+url+'">');
	document.write('<param name=quality value=high>');
	document.write('<PARAM NAME=wmode VALUE="transparent">');
	document.write('<embed src="'+url+'" quality=high wmode=transparent pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'">');
	document.write('</embed> ');
	document.write('</object>');

}

function swf_v(src,w,h,m,id, vars) {
	m = ((typeof(m) == 'undefined') ? 'none' : m);
	w = (((typeof(w) != 'undefined') && (w.toString().length > 0)) ? (' width="' + w + '" ') : '');
	h = (((typeof(h) != 'undefined') && (h.toString().length > 0)) ? (' height="' + h + '" ') : '');
	id = (((typeof(id) != 'undefined') && (id.toString().length > 0)) ? (' id="' + id + '" ') : '');
	
	var tag = ''
	tag += '<object '+id+' '+w+' '+h+' classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,16,0">';
	tag += '<param name="movie" value="'+src+'"/>';
	tag += '<param name="allowScriptAccess" value="always" />';
	tag += '<param name="flashvars" value="'+vars+'"/>';
	tag += '<param name="wmode" value="'+m+'"/>';
	tag += '<param name="quality" value="high"/>';
	tag += '<param name="menu" value="false">';
	tag += '<param name="allowfullscreen" value="true" />';
	tag += '<embed '+w+' '+h+' src="'+src+'" wmode="'+m+'" flashvars="'+vars+'" quality="high" menu="false" type="application/x-shockwave-flash" allowScriptAccess="always" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash"></embed>';
	tag += '</object>';
	document.write(tag);
}




