function FixFlash() {


	//Determine browser, we only need this for Internet Explorer
	if (navigator.appName == "Microsoft Internet Explorer") {

		//Array of elements to be replaced
		var arrElements = new Array(3);
		arrElements[0] = "object";
		arrElements[1] = "embed";
		arrElements[2] = "applet";
		//Loop over element types
		for (n = 0; n < arrElements.length; n++) {

			//set object for brevity
			replaceObj = document.getElementsByTagName(arrElements[n]);

			//loop over element objects returned
			for (i = 0; i < replaceObj.length; i++ ) {

				//set parent object for brevity
				parentObj = replaceObj[i].parentNode;

				//grab the html inside of the element before removing it from the DOM
				newHTML = parentObj.innerHTML;

				//remove element from the DOM
				parentObj.removeChild(replaceObj[i]);

				//stick the element right back in, but as a new object
				parentObj.innerHTML = newHTML;

				}
			}
		}
	}



function BlurLinks(){
  var a = document.getElementsByTagName('a');
  var x = a.length;

  for(i=0;i<x;i++){
    a[i].onfocus = new Function("this.blur();");
  }
}

function writeHTML(a) {
    document.write(a)
}


function Init() {
    BlurLinks();
    var inputs = document.getElementsByTagName("input");
    for (var i = 0; i < inputs.length; i++) {
        if(inputs[i].type == "image"){
        inputs[i].onfocus = new Function("this.blur();");
        }
    }
}

function a(breite,hoehe,name,pfad,prop)
{
xpos=(screen.width-breite)/2;
ypos=(screen.height-hoehe)/2;
prop+=(prop!='')?',':'';
prop+=',left='+xpos+',top='+ypos;

smallwin = window.open(pfad,name,prop+((prop!='')?',':'')+'width='+breite+',height='+hoehe);
smallwin.focus();
return false;
}

function b(breite,hoehe,name,pfad,prop)
{
xpos=(screen.width-breite)/2;
ypos=(screen.height-hoehe)/2;
prop+=(prop!='')?',':'';
prop+=',left='+xpos+',top='+ypos;

window.open(pfad,name,prop+((prop!='')?',':'')+'width='+breite+',height='+hoehe);}

function c(breite,hoehe,name,pfad,prop)
{
xpos=(screen.width-breite)/2;
ypos=(screen.height-hoehe)/2;
prop+=(prop!='')?',':'';
prop+=',left='+xpos+',top='+ypos;

window.open(pfad,name,prop+((prop!='')?',':'')+'width='+breite+',height='+hoehe);}

function d(breite,hoehe,name,pfad,prop)
{
xpos=(screen.width-breite)/2;
ypos=(screen.height-hoehe)/2;
prop+=(prop!='')?',':'';
prop+=',left='+xpos+',top='+ypos;

window.open(pfad,name,prop+((prop!='')?',':'')+'width='+breite+',height='+hoehe);}


