// function for flash ver.6 & lightbox JS
// 
function plugin_swf_load(na, w, h, loc, bg_col) {
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flashswflash.cab#version=6,0,0,0" ');
	document.write('id="swf" width="'+w+'" height="'+h+'" align="" />');
	document.write('<param name=movie value="'+na+'" />');
	document.write('<param name=flashvars value="loc='+loc+'" />');
	document.write('<param name=quality value=high />')
	document.write('<param name=bgcolor value='+bg_col+' />')
	document.write('<param name=wmode value="transparent" />');
	document.write('<embed src="'+na+'" flashvars="loc='+loc+'" quality=high bgcolor='+bg_col+' ');
	document.write('swliveconnect=false width="'+w+'" height="'+h+'" name="swf" align="" wmode="transparent" ');
	document.write('type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</embed>');
	document.write('</object>');
}
