window.showBird = function ()
{
	if (window.birdName && window.birdColor)
	{
		var so = new SWFObject("/images/f/second/second.swf", "swfx", "200", "400", "8", window.birdColor, null);
		so.addVariable("pathTxt", "/?from_flash_phrases=" + (window.phrasesVersion ? window.phrasesVersion : 'all'));
		so.addVariable("pathSwf", "/images/f/second/scenes/" + window.birdName +".swf?v1");
		so.addParam("menu", true);
		so.write("bird");
		so.addParam("wmode", "transparent");
		if (so.write("birdT")) document.getElementById('birdT').style.background = 'none';
	}
}

window.activeBird = function ()
{
	document.getElementById('bird').style.visibility = 'visible';
}

window.passiveBird = function ()
{
	document.getElementById('bird').style.visibility = 'hidden';
}

