gcode="ABQIAAAABM81BZnl0SXjEZduL8J1XRRsVEZvgeluO4DrK9OtXR1Zs_BEphTE3gkpERyJPOJgEE5tjcKy_McnHw";




function ladefunktionen(){
	editortest();
}

function editortest(){
	if(top.location.href!=document.location.href){
		with(document.getElementById("content")){
			style.marginLeft="20px!important";
			style.width="450px";
			style.fontSize="120%";
		}
	}
	else{
		window.setTimeout("schriftgroesse()", 100);
	}
}







function fixPNG(myImage) // correctly handle PNG transparency in Win IE 5.5 or higher.
  {
   if (window.ie55up)
 {
 var imgID = (myImage.id) ? "id='" + myImage.id + "' " : ""
 var imgClass = (myImage.className) ? "class='" + myImage.className + "' " : ""
 var imgTitle = (myImage.title) ? "title='" + myImage.title + "' " : "title='" + myImage.alt + "' "
 var imgStyle = "display:inline-block;" + myImage.style.cssText
 var strNewHTML = "<span " + imgID + imgClass + imgTitle
 strNewHTML += " style=\"" + "width:" + myImage.width + "px; height:" + myImage.height + "px;" + imgStyle + ";"
 strNewHTML += "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
 strNewHTML += "(src=\'" + myImage.src + "\', sizingMethod='scale');\"></span>"
 myImage.outerHTML = strNewHTML
 }
  }
  
  
