// -------------------------------------------------------------------------------
// Title
// wstawia tytul flashowy na strone
// -------------------------------------------------------------------------------
function title( title_str, width, height, rtl )
{
	if( title_str == undefined ) title_str = "";
	if( rtl == undefined ) rtl = "";
	if( width == undefined ) width = 400;
	if( height == undefined ) height = 40;

	var tag = new FlashTag( 'img/flash/title/title.swf', width, height, '7,0,14,0' );
	//alert( title_str );
	tag.addFlashVar( 'title_str', encodeURI(title_str) );
	tag.addFlashVar( 'rtl', rtl );
	tag.setId('title');
	tag.setMenu(false);
	tag.setScale("noborder");
	tag.setWmode('transparent');
	tag.setSalign('tl');
	tag.write(document);
	// or
	//document.write(tag.toString());
	//alert( tag.toString() );
}

