function runMyFlashStart() {
	document.write('		<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="590" height="420" id="start" align="bottom"><param name=movie value="flash/start.swf"><param name=quality value=high> <param name=wmode value=transparent> <param name=bgcolor value=#000000> <embed src="flash/start.swf" quality=high wmode=transparent bgcolor=#000000  width="590" height="420" name="start" align="bottom" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>\n');
}

function runMyFlash(path,w,h) {
	document.write('		<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="' + w + '" height="' + h + '" id="start" align="bottom"><param name=movie value="' + path + '"><param name=quality value=high> <param name=wmode value=transparent> <param name=bgcolor value=#000000> <embed src="' + path + '" quality=high wmode=transparent bgcolor=#000000  width="' + w + '" height="' + h + '" name="start" align="bottom" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>\n');
}

function hidden(tagid) {
	document.getElementById(tagid).style.visibility = "hidden";
	document.getElementById(tagid).style.display = "none";
}

function show(tagid) {
	document.getElementById(tagid).style.visibility = "visible";
	document.getElementById(tagid).style.display = "block";
}

function setHeader(animation, headerHeight) {
	if(isNaN(headerHeight)){
		headerHeight = 320;
	}
	var marginBottom = 0;
	hidden('flash');
	with(document.getElementById('flash').style){
		if(animation != 'default'){
			backgroundImage = 'none';
			backgroundColor = '#7F3B23';
		}else{
			backgroundImage = "url(/unternehmen/img/back.gif)";
		}
		 height = headerHeight + marginBottom + 'px';
	}
	with(document.getElementById('headeriframe')){
		src = '/unternehmen/animation.php?show='+animation;
		style.height = headerHeight + marginBottom + 'px';
	}
	show('flash');
	return;
}