<!--
	
	google.load("jquery", "1.3.2");

	function PopUp(link,titel,breite,hoehe,scroll,blnOpt,posX,posY)
	{
		win=window.open(link,titel,"width="+breite+",height="+hoehe+",toolbar=no,menubar=no,scrollbars="+scroll+",resizable=no");
		
		//alert(screen.width + 'x' + screen.height + '\n' + screen.availWidth + 'x' + screen.availHeight);
		
		if (screen.availWidth > 800 && screen.availHeight > 600)
		{
			if (blnOpt == 1)
			{
				win.moveTo(posX,posY);
			} else if (blnOpt == 2) {
				
				var moveX = screen.availWidth - breite - posX;
				var moveY = screen.availHeight - hoehe - posY
				
				if (moveX < 0)
				{
					moveX = 0;
				}
				if (moveY < 0)
				{
					moveY = 0;
				}
			
				win.moveTo(moveX,moveY);
			}
		}
		win.focus();
		
	}

	var detect = navigator.userAgent.toLowerCase();
	var OS,browser,version,total,thestring;

	function checkIt(string)
	{
		place = detect.indexOf(string) + 1;
		thestring = string;
		return place;
	}

	
	function integrateFlash(tmpVer,tmpWidth,tmpHeight,tmpID,tmpAlign,tmpMovie,tmpMenu,tmpQuality,tmpBG,tmpScale,tmpAllow) 
	{ 
		//integrateFlash(6,'100%','100%','magischmeik','middle','magischmeik.swf','false','high','002535','noscale','sameDomain') 
		//integrateFlash(6,900,500,'magischmeik','middle','magischmeik.swf','false','high','002535','noscale','sameDomain') 
	  var str =   '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=' + tmpVer + ',0,0,0" ';
	      str +=    'width="' + tmpWidth + '" ';
	      str +=    'height="' + tmpHeight + '" ';
	      str +=    'id="' + tmpID + '" ';
	      str +=    'align="' + tmpAlign + '"> ';
	      str +=    '<param name="allowScriptAccess" value="' + tmpAllow + '" /> ';
	      str +=    '<param name="movie" value="' + tmpMovie + '" /> ';
	      str +=    '<param name="menu" value="' + tmpMenu + '" /> ';
	      str +=    '<param name="quality" value="' + tmpQuality + '" /> ';
	      str +=    '<param name="bgcolor" value="#' + tmpBG + '" /> ';
	      str +=    '<param name="scale" value="' + tmpScale + '">';
	      str +=    '<embed src="' + tmpMovie + '" ';
	      str +=    'menu="' + tmpMenu + '" ';
	      str +=    'quality="' + tmpQuality + '" ';
	      str +=    'bgcolor="#' + tmpBG + '" ';
	      str +=    'scale="' + tmpScale + '"';
	      str +=    'width="' + tmpWidth + '" ';
	      str +=    'height="' + tmpHeight + '" ';
	      str +=    'name="' + tmpID + '" ';
	      str +=    'align="' + tmpAlign + '" allowScriptAccess="' + tmpAllow + '" ';
	      str +=    'type="application/x-shockwave-flash" ';
	      str +=    'pluginspage="http://www.macromedia.com/go/getflashplayer" /> ';
	      str +=  '</object>';
	  document.write(str); 
	}	
//-->
