function addFlashContent()
{
	
	
	var flashvars = 
	{
	   prm_content: "flash_header/xml/content.xml",
	   prm_startURL : getStartURL()
		
	};
	var params = 
	{
		quality: "BEST",
		allowFullScreen: "true",
		allowScriptAccess: "true"
	};
	var attributes = 
	{
		id: 'flashObject'
	};
	
	swfobject.embedSWF("flash_header/flash/flash_header.swf", "flash_content", "1024", "240", "9", false, flashvars, params, attributes);

}


function getStartURL()
{
	
	var startURL = "";
	
	
		
	if(parent.frames.length == 2)
	{
		try{
			startURL = parent.frames["mainFrame"].location.href;
			startURL = (startURL.substr(startURL.lastIndexOf('/')+1));
		}
		catch(e)
		{
			return "";	
		}
		
	}
	
	return startURL;	
	
}
