var img_level = "";

//***************************************
//	Browser-Check
//***************************************
is = new BrowserCheck();
function BrowserCheck() {
	var b = navigator.appName;
	if (b=="Netscape") this.b = "nc"
	else if (b=="Microsoft Internet Explorer") this.b = "ie"
	else this.b = b
	this.v = parseInt(navigator.appVersion);
	this.nc = (this.b=="nc" && this.v>=4);
	this.nc4 = (this.b=="nc" && this.v==4);
	this.nc6 = (this.b=="nc" && this.v>=5);
	this.ie = (this.b=="ie" && this.v>=4);
	this.ie4 = (navigator.userAgent.indexOf('MSIE 4')>0&&navigator.userAgent.indexOf('Opera')<0);
	this.ie5 = (navigator.userAgent.indexOf('MSIE 5')>0&&navigator.userAgent.indexOf('Opera')<0);
	this.ie6 = (navigator.userAgent.indexOf('MSIE 6')>0&&navigator.userAgent.indexOf('Opera')<0);
	this.badie = (this.b=="ie" && !(navigator.userAgent.indexOf('MSIE 5.5')>0) && !(navigator.userAgent.indexOf('6')>0));
	if (this.ie5) this.v = 5
	if (this.ie6) this.v = 6
	this.min = (this.nc||this.ie);
}

//***************************************
//	Flash-Aufruf
//***************************************
function getFlash(swf,width,height) {
		document.write('<object border="0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+width+'" height="'+height+'">');
		document.write(' <param name="movie" value="'+swf+'">');
		document.write(' <param name="quality" value="high">');
		document.write(' <param name="menu" value="false">');
		document.write(' <param name="wmode" value="transparent">');
		document.write(' <embed src="'+swf+'" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed>');
		document.write('</object>');
}