function swf_placer(name,width,height,s_color,transparent,version,id){
	if(!version){version="7,0,0,0";}
	if(!transparent){transparent="0";}
	document.write('<object ');
	if(id){
		document.write('id="'+id+'" ')
	}
	document.write(' classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="'+width+'" height="'+height+'"  align="middle" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+version+'">');
	
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	
	document.write('<param name="movie" value="'+name+'" />');
	document.write('<param name="quality" value="high" />');
	if(s_color){
	document.write('<param name="bgcolor" value="'+s_color+'" />');
	}
	if(transparent==1){
	document.write('<param name="wmode" value="transparent" />');
	}
	document.write('<param name="menu" value="false">');
	document.write('<embed src="'+name+'" quality="high"');
	if(transparent==1){
	document.write('wmode="transparent" ');
	}
	document.write('bgcolor="'+s_color+'" width="'+width+'" height="'+height+'" name="'+name+'" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
} 

function swf_exactfit(name,width,height,s_color,transparent,version,id){
	if(!version){version="7,0,0,0";}
	if(!transparent){transparent="0";}
	document.write('<object ');
	if(id){
		document.write('id="'+id+'" ')
	}
	document.write(' classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="'+width+'" height="'+height+'"  align="middle" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+version+'">');
	
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="SCALE" value="exactfit" /> ');	
	document.write('<param name="movie" value="'+name+'" />');
	document.write('<param name="quality" value="high" />');
	if(s_color){
	document.write('<param name="bgcolor" value="'+s_color+'" />');
	}
	if(transparent==1){
	document.write('<param name="wmode" value="transparent" />');
	}
	document.write('<param name="menu" value="false">');
	document.write('<embed src="'+name+'" quality="high"');
	if(transparent==1){
	document.write('wmode="transparent" ');
	}
	document.write('bgcolor="'+s_color+'" width="'+width+'" height="'+height+'" name="'+name+'" align="middle" scale="exactfit" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
} 


