function BlogFlashBanner( id )
{
	var date_obj		= new Date;
	var t						= date_obj.getMonth() + '' + date_obj.getHours() + '' + date_obj.getMinutes() + '' + date_obj.getSeconds() + '' + date_obj.getMinutes();
	var file_val		= '/flash/master.swf';
	var width_val		= 760;
	var height_val	= 200;
	var query_val		= 'user_id=' + id + '&t=' + t;
	BlogFlash( file_val , width_val , height_val , query_val );
}
function BlogFlashBannerEditor( id , p , t )
{
	var file_val		= '/flash/editor.swf';
	var width_val		= 760;
	var height_val	= 220;
	var query_val		= 'user_id=' + id + '&t=' + t + '&p=' + p;
	BlogFlash( file_val , width_val , height_val , query_val );
}
function BlogFlash( file_val , width_val , height_val , query_val )
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	if( width_val ) document.write(' width="' + width_val + '" ');
	if( height_val ) document.write(' height="' + height_val + '" ');
	document.write(' swLiveConnect=true id="fla">');
	document.write('  <param name="movie" value="' + file_val + '" />');
	document.write('  <param name="quality" value="high" />');
	document.write('  <param name="wmode" value="opaque" />');
	if( query_val ) document.write('  <param name="FlashVars" value="' + query_val + '" />');
	document.write('<embed src="' + file_val + '" ');
	if( query_val ) document.write(' FlashVars="' + query_val + '" ');
	document.write('quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" ');
	if( width_val ) document.write(' width="' + width_val + '" ');
	if( height_val ) document.write(' height="' + height_val + '" ');
	document.write(' name="fla" id="fla"></embed>');
	document.write('</object>');
}
