try{document.execCommand("BackgroundImageCache",false,true);}catch(err){}
function $(id){return document.getElementById(id);}
function clear_against(obj,str){if(obj.value==str){obj.value="";}}
function menue_navi(){}
function set_display(element,set_to,recursive,tagname){element.style.display=set_to;if(recursive>0){var under_elements=element.getElementsByTagName(tagname);for(i=0;i<under_elements.length;i++){set_display(under_elements[i],set_to,recursive-1,tagname);}}}
function getElementsByClass(searchClass,node,tag){var classElements=new Array();if(node==null)
node=document;if(tag==null)
tag='*';var els=node.getElementsByTagName(tag);var elsLen=els.length;var pattern=new RegExp("(^|\\s)"+searchClass+"(\\s|$)");for(i=0,j=0;i<elsLen;i++){if(pattern.test(els[i].className)){classElements[j]=els[i];j++;}}
return classElements;}
function vistoggle(id){var element=document.getElementById(id);if(element.style.display=="block"){element.style.display="none";}else{element.style.display="block";}}
function getchildren(obj,name){var children=new Array();if(obj.childNodes==null){return null;}
for(var i=0;i<obj.childNodes.length;i++){if(obj.childNodes[i].nodeType==1&&(obj.childNodes[i].nodeName.toUpperCase()==name.toUpperCase()||name===null)){children.push(obj.childNodes[i]);}}
if(children.length==0){return null;}
return children;}
function get_xmlHttp(){if(window.ActiveXObject){try{xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");}catch(e){try{xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");}catch(e){}}}else if(window.XMLHttpRequest){try{xmlHttp=new XMLHttpRequest;}catch(e){}}
return xmlHttp;}
function element_clear(obj){while(obj.childNodes.length>0){obj.removeChild(obj.childNodes[0]);}}
function clear(obj){while(obj.childNodes.length>0){obj.removeChild(obj.childNodes[0]);}}
function confirm_delete(url){var really=confirm("Delete?");return really;}
function confirm_popup(url,message){div_popup("confirm");clear($("confirm_message"));$("confirm_message").appendChild(document.createTextNode(message));$("confirm_yes").href=url;}
var onloadfuncs=[];function onloadfuncs_exec(){for(var i=0;i<onloadfuncs.length;i++){onloadfuncs[i]();}}
function drop(obj,callback){this.drop_obj=obj;this.callback=callback;var that=this;this.init=function(){}
this.adddragger=function(dragger){if(dragger instanceof drag){dragger.addEventListener("drop",this.dropped);}}
this.collision=function(obj){var boundingbox=this.getboundingbox();var objpos=this.getabspos(obj);if(objpos[0]>boundingbox[0]&&objpos[0]<boundingbox[2]&&objpos[1]>boundingbox[1]&&objpos[1]<boundingbox[3]){return true;}else{return false;}}
this.getboundingbox=function(){var coords=this.getabspos(this.drop_obj);return[coords[0],coords[1],coords[0]+this.drop_obj.offsetWidth,coords[1]+this.drop_obj.offsetHeight];}
this.getabspos=function(obj){var x=0;var y=0;while(obj!=null){y+=obj.offsetTop;x+=obj.offsetLeft;obj=obj.offsetParent;}
return[x,y];}
this.dropped=function(obj){if(that.collision(obj)){that.callback(obj);}}
this.init();}
function mousemove(){this.moveevent=null;var that=this;this.init=function(){document.onmousemove=this.mousepos;document.onmouseup=this.mouseup;}
this.mousepos=function(e){if(!e)e=window.event;that.moveevent=e;that.dispatchEvent("mousemove",e);}
this.mouseup=function(e){if(!e)e=window.event;that.dispatchEvent("mouseup",e);}
this.listeners={"mousemove":[],"mouseup":[]};this.addEventListener=function(string,callback){if(this.listeners[string]instanceof Array){this.listeners[string].push(callback);}}
this.dispatchEvent=function(string,data){if(this.listeners[string]instanceof Array){var listeners=this.listeners[string];for(var i=0;i<listeners.length;i++){listeners[i](data);}}}
this.removeEventListener=function(string,callback){if(this.listeners[string]instanceof Array){var listeners=this.listeners[string];for(var i=0;i<listeners.length;i++){if(listeners[i]==callback){listeners.splice(i,1);return true;}}
return false;}else{return false;}}
this.init();}
var m=new mousemove();function drag(obj,retract,jump_to_mouse,trigger){this.startx_obj=null;this.starty_obj=null;this.startx_mouse=null;this.starty_mouse=null;this.objlink=null;this.originx_obj=null;this.originy_obj=null;this.dragging=false;var that=this;this.dragged=false;this.retract=retract;this.drag_obj=obj;this.trigger=(trigger==null)?obj:trigger;this.jump_to_mouse=(jump_to_mouse==null)?true:jump_to_mouse;this.mouseoffset=[0,0];this.dragit=function(e){that.dragging=true;if(!e)e=window.event;if(e.preventDefault&&e){e.preventDefault();}
var move_data=that.getmousepos();var obj_move_data=that.getobjpos();that.mouseoffset=that.getmouseoffset();that.startx_obj=obj_move_data.left;that.starty_obj=obj_move_data.top;that.startx_mouse=move_data.left;that.starty_mouse=move_data.top;that.setpos();m.addEventListener("mouseup",that.drop);m.addEventListener("mousemove",that.setpos);if(!that.dragged){that.drag_obj.style.position=(that.drag_obj.style.position=='')?'relative':that.drag_obj.style.position;that.originx_obj=that.startx_obj;that.originy_obj=that.starty_obj;}
that.dispatchEvent("drag",that.drag_obj);that.dragged=true;return false;}
this.drop=function(){if(that.dragging){m.removeEventListener("mouseup",that.drop);m.removeEventListener("mousemove",that.setpos);that.dragging=false;that.dispatchEvent("drop",that.drag_obj);if(that.retract){that.drag_obj.style.top=that.starty_obj+"px";that.drag_obj.style.left=that.startx_obj+"px";}
var move_data=that.getmousepos();if(that.startx_mouse==move_data.left&&that.starty_mouse==move_data.top&&that.objlink!=""&&that.objlink!=null){window.location.href=that.objlink;}}}
this.getmouseoffset=function(){var objpos=this.getabspos(this.drag_obj);var mousepos=this.getmousepos();return[objpos[0]-mousepos.left,objpos[1]-mousepos.top];}
this.getabspos=function(obj){var x=0;var y=0;while(obj!=null){y+=obj.offsetTop;x+=obj.offsetLeft;obj=obj.offsetParent;}
return[x,y];}
this.init=function(){if(this.trigger.tagName=="A"){this.objlink=this.trigger.href;this.trigger.removeAttribute('href');}
this.trigger.onmousedown=this.dragit;document.ondragstart=function(e){return false;}}
this.getmousepos=function(){var e=m.moveevent;var body=(window.document.compatMode&&window.document.compatMode=="CSS1Compat")?window.document.documentElement:window.document.body;var move_data={top:e.pageY?e.pageY:e.clientY+body.scrollTop-body.clientTop,left:e.pageX?e.pageX:e.clientX+body.scrollLeft-body.clientLeft};return move_data;}
this.getobjpos=function(){this.drag_obj.style.left=(this.drag_obj.style.left=='')?0+'px':this.drag_obj.style.left;this.drag_obj.style.top=(this.drag_obj.style.top=='')?0+'px':this.drag_obj.style.top;var move_data={top:parseInt(this.drag_obj.style.top),left:parseInt(this.drag_obj.style.left)};return move_data;}
this.setpos=function(){var move_data=that.getmousepos();var minusx=0;var minusy=0;if(that.jump_to_mouse){minusx+=that.mouseoffset[0];minusy+=that.mouseoffset[1];}
if(that.dragging){that.drag_obj.style.top=(move_data.top-that.starty_mouse+that.starty_obj-minusy)+"px";that.drag_obj.style.left=(move_data.left-that.startx_mouse+that.startx_obj-minusx)+"px";}}
this.listeners={"drag":[],"drop":[],"move":[]};this.addEventListener=function(string,callback){if(this.listeners[string]instanceof Array){this.listeners[string].push(callback);}}
this.dispatchEvent=function(string,data){if(this.listeners[string]instanceof Array){var listeners=this.listeners[string];for(var i=0;i<listeners.length;i++){listeners[i](data);}}}
this.removeEventListener=function(string,callback){if(this.listeners[string]instanceof Array){var listeners=this.listeners[string];for(var i=0;i<listeners.length;i++){if(listeners[i]==callback){listeners.splice(i,1);return true;}}
return false;}else{return false;}}
this.init();}
function follow(obj,offsetx,offsety){this.offsetx=offsetx;this.offsety=offsety;this.startx_obj=null;this.starty_obj=null;this.startx_mouse=null;this.starty_mouse=null;this.originx_obj=null;this.originy_obj=null;this.dragging=false;var that=this;this.drag_obj=obj;this.mouseoffset=[0,0];this.init=function(){that.drag_obj.style.position=(that.drag_obj.style.position=='')?'relative':that.drag_obj.style.position;m.addEventListener("mousemove",that.start);}
this.start=function(){m.removeEventListener("mousemove",that.start);var tmp_display=that.drag_obj.style.display;if(that.drag_obj.style.display=="none"){that.drag_obj.style.display="block";}
var move_data=that.getmousepos();var obj_move_data=that.getobjpos();that.startx_obj=obj_move_data.left;that.starty_obj=obj_move_data.top;that.startx_mouse=move_data.left;that.starty_mouse=move_data.top;that.mouseoffset=that.getmouseoffset();if(typeof(offsetx)!="undefined"){that.mouseoffset[0]-=parseInt(offsetx);}
if(typeof(offsety)!="undefined"){that.mouseoffset[1]-=parseInt(offsety);}
m.addEventListener("mousemove",that.setpos);that.drag_obj.style.display=tmp_display;}
this.getmouseoffset=function(){var objpos=this.getabspos(this.drag_obj);var mousepos=this.getmousepos();return[objpos[0]-mousepos.left,objpos[1]-mousepos.top];}
this.getabspos=function(obj){var x=0;var y=0;while(obj!=null){y+=obj.offsetTop;x+=obj.offsetLeft;obj=obj.offsetParent;}
return[x,y];}
this.getmousepos=function(){var e=m.moveevent;var body=(window.document.compatMode&&window.document.compatMode=="CSS1Compat")?window.document.documentElement:window.document.body;var move_data={top:e.pageY?e.pageY:e.clientY+body.scrollTop-body.clientTop,left:e.pageX?e.pageX:e.clientX+body.scrollLeft-body.clientLeft};return move_data;}
this.getobjpos=function(){this.drag_obj.style.left=(this.drag_obj.style.left=='')?0+'px':this.drag_obj.style.left;this.drag_obj.style.top=(this.drag_obj.style.top=='')?0+'px':this.drag_obj.style.top;var move_data={top:parseInt(this.drag_obj.style.top),left:parseInt(this.drag_obj.style.left)};return move_data;}
this.setpos=function(){var move_data=that.getmousepos();var minusx=0;var minusy=0;minusx+=that.mouseoffset[0];minusy+=that.mouseoffset[1];that.drag_obj.style.top=(move_data.top-that.starty_mouse+that.starty_obj-minusy)+"px";that.drag_obj.style.left=(move_data.left-that.startx_mouse+that.startx_obj-minusx)+"px";}
this.init();}
function menue(id){var sm=$(id);if(sm!=null){var lis=getchildren(sm,"LI");for(var i=0;i<lis.length;i++){var cur_li=lis[i];cur_li.onmouseover=function(){if(getchildren(this,"UL")!=null){getchildren(this,"UL")[0].style.display="block";}}
cur_li.onmouseout=function(){if(getchildren(this,"UL")!=null){getchildren(this,"UL")[0].style.display="none";}}}}}
function footnoteLinks(containerID,targetID){if(!document.getElementById||!document.getElementsByTagName||!document.createElement)return false;if(!document.getElementById(containerID)||!document.getElementById(targetID))return false;var container=document.getElementById(containerID);var target=document.getElementById(targetID);var h2=document.createElement('h2');addClass.apply(h2,['printOnly']);var h2_txt=document.createTextNode('Links');h2.appendChild(h2_txt);var coll=container.getElementsByTagName('*');var ol=document.createElement('ol');addClass.apply(ol,['printOnly_list']);var myArr=[];var thisLink;var num=1;for(var i=0;i<coll.length;i++){var thisClass=coll[i].className;if((coll[i].getAttribute('href')||coll[i].getAttribute('cite'))&&(thisClass==''||thisClass.indexOf('ignore')==-1)){thisLink=coll[i].getAttribute('href')?coll[i].href:coll[i].cite;var note=document.createElement('sup');addClass.apply(note,['printOnly']);var note_txt;var j=inArray.apply(myArr,[thisLink]);if(j||j===0){note_txt=document.createTextNode(j+1);}else{var li=document.createElement('li');var li_txt=document.createTextNode(thisLink);li.appendChild(li_txt);ol.appendChild(li);myArr.push(thisLink);note_txt=document.createTextNode(num);num++;}note.appendChild(note_txt);if(coll[i].tagName.toLowerCase()=='blockquote'){var lastChild=lastChildContainingText.apply(coll[i]);lastChild.appendChild(note);}else{coll[i].parentNode.insertBefore(note,coll[i].nextSibling);}}}target.appendChild(h2);target.appendChild(ol);addClass.apply(document.getElementsByTagName('html')[0],['noted']);return true;}
if(Array.prototype.push==null){Array.prototype.push=function(item){this[this.length]=item;return this.length;};};if(Array.prototype.shift==null){Array.prototype.shift=function(){var response=this[0];for(var i=0;i<this.length-1;i++){this[i]=this[i+1];};this.length--;return response;};};if(!Function.prototype.apply){Function.prototype.apply=function(oScope,args){var sarg=[];var rtrn,call;if(!oScope)oScope=window;if(!args)args=[];for(var i=0;i<args.length;i++){sarg[i]="args["+i+"]";};call="oScope.__applyTemp__("+sarg.join(",")+");";oScope.__applyTemp__=this;rtrn=eval(call);oScope.__applyTemp__=null;return rtrn;};};function inArray(needle){for(var i=0;i<this.length;i++){if(this[i]===needle){return i;}}return false;}Array.prototype.inArray=inArray;function isArray(){return(typeof(this.length)=="undefined")?false:true;};Array.prototype.isArray=isArray;function ksort(){var sArr=[];var tArr=[];var n=0;for(i in this)tArr[n++]=i+"|"+this[i];tArr=tArr.sort();for(var i=0;i<tArr.length;i++){var x=tArr[i].split("|");sArr[x[0]]=x[1];}return sArr;}Array.prototype.ksort=ksort;function addClass(theClass){if(this.className!=''){this.className+=' '+theClass;}else{this.className=theClass;}}Object.prototype.addClass=addClass;function removeClass(theClass){var oldClass=this.className;var regExp=new RegExp('\\s?'+theClass+'\\b');if(oldClass.indexOf(theClass)!=-1){this.className=oldClass.replace(regExp,'');}}Object.prototype.removeClass=removeClass;function lastChildContainingText(){var testChild=this.lastChild;var contentCntnr=['p','li','dd'];while(testChild.nodeType!=1){testChild=testChild.previousSibling;}var tag=testChild.tagName.toLowerCase();var tagInArr=inArray.apply(contentCntnr,[tag]);if(!tagInArr&&tagInArr!==0){testChild=lastChildContainingText.apply(testChild);}return testChild;}Object.prototype.lastChildContainingText=lastChildContainingText;if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return"";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;function div_popup(id){document.getElementById(id).style.display="block";}
function div_popout(id){document.getElementById(id).style.display="none";}
var intervalbla=null;function home_blendin(){$('steuernundmehr_fade').style.opacity=0;intervalbla=setTimeout(function(){setInterval("fade()",50);},300);}
function fade(){var tmpop=$('steuernundmehr_fade').style.opacity;$('steuernundmehr_fade').style.opacity=0.01+parseFloat(tmpop);if($('steuernundmehr_fade').style.opacity>=1){$('steuernundmehr_fade').style.opacity=1;clearInterval(intervalbla);}}
