function updateFlashContent()
{
	var MIN_FLASHPLAYER_VERSION = "9.0.0";
	
	var flashOff = window.location.search.indexOf('flash=off') >= 0;
	
	var flashvars = {};
	//TODO ggf. mit absoluter URL ersetzten
	flashvars.basePath = "./../../../flash-vigowelt/flash-vigowelt/microsite/";
	
	var params = {};
	params.allowFullScreen = true;
	params.allowScriptAccess = "always";
	
	var attributes = {};
	attributes.id = "myFlashContent";
	
	if( swfobject.hasFlashPlayerVersion( MIN_FLASHPLAYER_VERSION ) && !flashOff )
	{		
		$('#container').css( { display:'none' } );

		swffit.showScrollV();
		swfobject.embedSWF( flashvars.basePath + "VigoWeltApp.swf", "myFlashContent", "1005", "720", MIN_FLASHPLAYER_VERSION, false, flashvars, params, attributes );
		swffit.fit( "myFlashContent", 1005, 720, 1280, 720, true, true );
	}
	else{}
}


function updateFlashTeaser()
{
	var MIN_FLASHPLAYER_VERSION = "9.0.0";
	
	var flashOff = window.location.search.indexOf('flash=off') >= 0;
	
	var flashvars = {};
	//TODO ggf. mit absoluter URL ersetzten
	flashvars.basePath = "./../../../flash-vigowelt/flash-vigowelt/teaser/";
	flashvars.vigoweltUrl = "http://www.vigo.de/de/vigopackung/vigo_volle_packung_vorteile.html";
	flashvars.yOffset = "76";
	
	var params = {};
	params.wmode = "transparent";
	params.allowFullScreen = true;
	params.allowScriptAccess = "always";
	
	var attributes = {};
	attributes.id = "myFlashContent";
	
	if( swfobject.hasFlashPlayerVersion( MIN_FLASHPLAYER_VERSION ) && !flashOff )
	{
		swfobject.embedSWF( flashvars.basePath + "VigoWeltTeaser.swf", "myFlashContent", "994", "260", MIN_FLASHPLAYER_VERSION, false, flashvars, params, attributes );		
		
		minimizeTeaser();
	}
	else{}
}

function maximizeTeaser()
{	
	$('#myFlashContent').css( { position:'absolute', marginTop:'0px', top:"0px", left:'0px', width:'100%', height:'500px', textAlign:'center', marginLeft: 'auto', marginRight: 'auto',  backgroundColor: 'transparent' } );
}

function minimizeTeaser()
{	
	$('#myFlashContent').css( { position:'absolute', marginTop:'76px', top:"0px", left:'0px', width:'100%', height:'262px', textAlign:'center', marginLeft: 'auto', marginRight: 'auto',  backgroundColor:'#FFFFFF' } );
}

function removeFlashContent()
{	
	swfobject.removeSWF( "myFlashContent" );
	
	$('#container').css( { display:'block' } );
}
