// returns INNER width of window
function getWindowWidth() {
 // if innerWidth is unknown [Internet Explorer] use offsetWidth
  if (window.innerWidth) {
	return window.innerWidth;
  } else {
	return document.body.offsetWidth;
  } 
}

// returns INNER height of window
function getWindowHeight() {
 //if innerHeight is unknown [Internet Explorer] use offsetHeight
  if (window.innerHeight) {
	return window.innerHeight;
  } else {
	return document.documentElement.clientHeight;
  }
}		

function setFlash() {
	var breite = getWindowWidth();
	var hoehe = getWindowHeight();
	var flashvars = {};
	var params = {bgcolor:"#FFFFFF", scale:"noBorder", salign:"lb", menu:"false", wmode:"transparent"};
	swfobject.embedSWF("fileadmin/templates/kinderdentist/hintergrundvideo.swf", "unterwasserwelt", breite, hoehe, "9.0.115", "expressInstall.swf", flashvars, params );

	var params2 = { wmode:"transparent"};
	swfobject.embedSWF("fileadmin/templates/kinderdentist/video_logoleiste_kinder.swf", "videocontent", 680, 171, "9.0.115", "expressInstall.swf", flashvars, params2 );

	makeMap();
}


