/**
 * @version	1.5.0 [2005.08.04]
 *
 */

function swfTitle( title, width )
{
	title = title.replace('&','%26');

	if (typeof(width)=='undefined') width='100%';
	
	if (sys_flash < 5)
	{
		document.write('<div class="title">'+title+'</div>');
	}
	else
	{
		swfWrite('', 'project/files/swf/title.swf', 'title='+title, width, 31, 'transparent');
	}
}

function swfTitleBig( title, width )
{
	title = title.replace('&','%26');
	
	if (typeof(width)=='undefined') width='100%';
	
	if (sys_flash < 5)
	{
		document.write('<div class="title">'+title+'</div>');
	} 
	else
	{
		s_id = 'title'+(new Date()).getTime();
		swfWrite(s_id, 'project/files/swf/title_big.swf', 'title='+title+'&foldDiv='+s_id, width, 31, 'transparent','noscale','LT','setFold');
	}
}

