﻿/******************* Link *******************/
function Link(nodA){
    this.Node = nodA;
    this.Text = this.Node.innerHTML;
}
/******************* Link *******************/
/******************* Navigation path *******************/
function NavigationPath(nodNavigationPath){
    this.Node = nodNavigationPath;
    this.Links = new Array();
    this.ReadLinks = ReadLinks;
    this.ReadLinks();
}
function ReadLinks(){
    nodAChilds = this.Node.getElementsByTagName("A");
    for(i = 0; i < nodAChilds.length; i++){
        lnk = new Link(nodAChilds[i]);
        this.Links.push(lnk);
    }
}
/******************* Navigation path *******************/
/******************* Menu *******************/
function Menu(nod, conf){
    this.Node = nod;
    this.Configuration = conf;
    this.Entries = null;
    this.ReadEntries = ReadEntries;
}
function ReadEntries(){
    this.Entries = new Array();
    for(j = 0; j < this.Node.childNodes.length; j++){
        if(this.Node.childNodes[j].nodeName == this.Configuration.EntryTagName){
            this.Entries.push(new Entry(this.Node.childNodes[j], this.Configuration));
        }
    }
}
/******************* Menu *******************/
/******************* Tree menu entry *******************/
function Entry(nod, conf){
    this.Node = nod;
    this.Configuration = conf;
    this.Link = null;
    this.Submenu = null;
    
    this.ReadLink = ReadLink;    
    this.ReadSubmenu = ReadSubmenu;
    this.Activate = Activate;
    
    this.ReadLink();
    this.ReadSubmenu();
}
function ReadLink(){
    for(i = 0; i < this.Node.childNodes.length; i++){
        if(this.Node.childNodes[i].nodeName == "A"){
            this.Link = new Link(this.Node.childNodes[i]);
            break;
        }
    }
}
function ReadSubmenu(){
    for(p = 0; p < this.Node.childNodes.length; p++){
        if(this.Node.childNodes[p].nodeName == this.Configuration.MenuTagName){
            this.Submenu = new Menu(this.Node.childNodes[p], this.Configuration);
        }
    }
}
function Activate(){
    if(this.Node.className.indexOf(this.Configuration.CssClassPostfix) == -1 && this.Node.className != ""){
        this.Node.className += this.Configuration.CssClassPostfix;
    }    
    if(this.Link.Node.className != ""){
        this.Link.Node.className += this.Configuration.CssClassPostfix;
    }
    if(this.Submenu != null && this.Configuration.ActivateSubmenu){
        if(this.Submenu.Node.className != ""){
            this.Submenu.Node.className += this.Configuration.CssClassPostfix;
        }
        if(this.Configuration.ActivateSubmenuEntries)
        {
            this.Submenu.ReadEntries();
            for(n = 0; n < this.Submenu.Entries.length; n++){
                if(this.Submenu.Entries[n].Node.className != ""){
                    this.Submenu.Entries[n].Node.className += this.Configuration.CssClassPostfix;
                }
            }
        }
    }
}
/******************* Tree menu entry *******************/
/******************* Tree menu *******************/
function TreeMenu(nodTreeMenu, conf){
    this.Node = nodTreeMenu;
    this.Self = new Menu(this.Node, conf);
    this.ActivateByNavigationPath = ActivateByNavigationPath;
    this.DoActivation = DoActivation;
}
function ActivateByNavigationPath(np, iStartLevel){
    if(np.Links.length > iStartLevel){
        this.DoActivation(np, iStartLevel, this.Self)
    }
}
function DoActivation(np, iLevel, menu){
    menu.ReadEntries();
    for(m = 0; m < menu.Entries.length; m++){
        if(menu.Entries[m].Link.Text == np.Links[iLevel].Text){
            menu.Entries[m].Activate();
            if(menu.Entries[m].Submenu && np.Links.length > iLevel + 1){
                iLevel++;
                this.DoActivation(np, iLevel, menu.Entries[m].Submenu);
            }
        }        
    }
}
/******************* Tree menu *******************/
/******************* Configuration *******************/
function Configuration()
{
    this.MenuTagName;
    this.EntryTagName;
    this.CssClassPostfix;
    this.ActivateSubmenu = false;
    this.ActivateSubmenuEntries = false;
}
/******************* MainNavigation *******************/
    function  rollOverLogin(){        
        if(document.getElementById("loginClosed").style.display = "block")
            {document.getElementById("loginClosed").style.display = "none";}
        else
            {document.getElementById("loginOpen").style.display = "none";} 
        if(document.getElementById("loginClosed").style.display = "none")
            {document.getElementById("loginOpen").style.display = "block";}
        else
            {document.getElementById("loginOpen").style.display = "none";} 
}
    function rollOutLogin() {        
        if(document.getElementById("loginClosed").style.display = "none")
            {document.getElementById("loginClosed").style.display = "block";}
        else
            {document.getElementById("loginOpen").style.display = "block";} 
        if(document.getElementById("loginClosed").style.display = "block")
            {document.getElementById("loginOpen").style.display = "none";}
        else
            {document.getElementById("loginOpen").style.display = "block";} 
                setTimeout("rollOutLogin()", 5000);    
}
    function rollOverContent() {        
        if(document.getElementById("inhalt2").style.display = "none")
            {document.getElementById("inhalt2").style.display = "block";}
        else
            {document.getElementById("inhalt").style.display = "block";} 
        if(document.getElementById("inhalt2").style.display = "block")
            {document.getElementById("inhalt").style.display = "none";}
        else
            {document.getElementById("inhalt").style.display = "block";} 
        
}
    function rollOutContent() {        
        if(document.getElementById("inhalt2").style.display = "block")
            {document.getElementById("inhalt2").style.display = "none";}
        else
            {document.getElementById("inhalt").style.display = "none";} 
        if(document.getElementById("inhalt2").style.display = "none")
            {document.getElementById("inhalt").style.display = "block";}
        else
            {document.getElementById("inhalt").style.display = "none";} 
        
}

/* BEGIN selectbox sprache Author unbekannt geändert durch GECA */

    function selectReplacement(obj) {
      obj.className += ' replaced';
      var ul = document.createElement('ul');
      ul.className = 'selectReplacement';
      var opts = obj.options;
      for (var i=0; i < opts.length; i++) {
        var selectedOpt;
        if (opts[i].selected) {
          selectedOpt = i;
          break;
        } else {
          selectedOpt = 0;
        }
      }
      for (var i=0; i < opts.length; i++) {
        var li = document.createElement('li');
        var txt = document.createTextNode(opts[i].text);
        var value = opts[i].value;
        li.appendChild(txt);
        li.selIndex = opts[i].index;
        li.selectID = obj.id;
        li.lang = value;
        li.onclick = function() {
          selectMe(this);
          window.location.href = this.lang;
        }
        if (i == selectedOpt) {
          li.className = 'selected';
          li.onclick = function() {
            this.parentNode.className += ' selectOpen';
            this.onclick = function() {
              selectMe(this);
              window.location.href = this.lang;
            }
          }
        }
        if (window.attachEvent) {
          li.onmouseover = function() {
            this.className += ' hover';
          }
          li.onmouseout = function() {
            this.className = 
              this.className.replace(new RegExp(" hover\\b"), '');
          }
        }
        ul.appendChild(li);
      }
      obj.parentNode.insertBefore(ul,obj);
    }
    function selectMe(obj) {
      var lis = obj.parentNode.getElementsByTagName('li');
      for (var i=0; i < lis.length; i++) {
        if (lis[i] != obj) {
          lis[i].className='';
          
          lis[i].onclick = function() {
            selectMe(this);            
            window.location.href = this.lang;
          }
          
        } else {
          setVal(obj.selectID, obj.selIndex);
          obj.className='selected';
          obj.parentNode.className = obj.parentNode.className.replace(new RegExp(" selectOpen\\b"), '');
          obj.onclick = function() {
            obj.parentNode.className += ' selectOpen';
            
            this.onclick = function() {
              selectMe(this);              
              window.location.href = this.lang;
            }
            
          }
        }
      }
    }
    function setVal(objID, selIndex) {
      var obj = document.getElementById(objID);
      obj.selectedIndex = selIndex;
    }
    function setForm() {
      var s = document.getElementsByTagName('select');
        /*
      for (var i=0; i < s.length; i++) {
        selectReplacement(s[i]);
      }
        */
        selectReplacement(document.getElementById('sprache'));
    }
    window.onload = function() {
      (document.all && !window.print) ? null : setForm();
    }
/* FINISH selectbox sprache Author unbekannt geändert durch GECA */


function popUp(URL) {
    eval("page" + " = window.open(URL, '" + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=auto,height=auto,left = NaN,top = NaN');");
}
function zurueck(){
    if(counter >0 )
    { 
        counter--;
        document.getElementById("images").src = images[counter];
        document.getElementById("akt").innerHTML = counter+1;
        document.getElementById("text").innerHTML = text[counter];
    }
}
function weiter(){
    if(counter < images.length-1)
    counter++;
    document.getElementById("images").src = images[counter];
    document.getElementById("akt").innerHTML = counter+1;
    document.getElementById("text").innerHTML = text[counter];
}
function zoom(){
    var url = link_popup[counter];
    window.open(url,  "Controlware", "width=800, height=600, resizable=yes,");
}
function changeBgNavContent(element){
    var e_style=element.style.backgroundColor;
    e_siblings=document.getElementsByName("navContent");
    for(i=0;i < e_siblings.length;i++)
        {
            e_siblings[i].parentNode.style.backgroundColor='#ffffff';
            e_siblings[i].style.fontWeight='normal';
            e_siblings[i].style.color='#9d9d9d';
        }    
    if(e_style=='')
        {
            element.parentNode.style.backgroundColor='#ffc010';
            element.style.fontWeight='bold';
            element.style.color='#ffffff';
        }
}
 
/* ### MASCHINEN UEBERSICHT GECA Opening ### */
function edoras_putz_geca_findPos(obj) {
    var curleft = curtop = 0;
    if (obj.offsetParent) {
        curleft = obj.offsetLeft
        curtop = obj.offsetTop
        while (obj = obj.offsetParent) {
            curleft += obj.offsetLeft
            curtop += obj.offsetTop
        }
    }
    return [curleft,curtop];
}
function edoras_putz_geca_mousein(myobject)
{
    neuehoehe = -1;
    if(myobject.previousSibling) 
    {
        if(myobject.previousSibling != "[object Text]")
        {
            myobject.previousSibling.getElementsByTagName("td")[0].className ="space-hover-up";
        }
        else
        {        
            mynewobject = myobject.previousSibling;    
            if(mynewobject.previousSibling)
            {                
                mynewobject.previousSibling.getElementsByTagName("td")[0].className ="space-hover-up";
            }
        }
    } 
    else 
    {
        myobject.getElementsByTagName("td")[0].style.borderTop = "1px solid #ffc010";
        myobject.getElementsByTagName("td")[1].style.borderTop = "1px solid #ffc010";
        myobject.getElementsByTagName("td")[2].style.borderTop = "1px solid #ffc010";
        neuehoehe = 0;
    }
    
    if(myobject.nextSibling)
    {
        if(myobject.nextSibling != "[object Text]")
        {
            myobject.nextSibling.getElementsByTagName("td")[0].className ="space-hover-do";
        }
        else
        {
            mynewobject = myobject.nextSibling;
            if(mynewobject.nextSibling)
            {                        
                mynewobject.nextSibling.getElementsByTagName("td")[0].className ="space-hover-do";
            }
        }
    }
    myobject.getElementsByTagName("td")[2].style.borderRight = "1px solid #ffc010"; 

    try {
        myobject.getElementsByTagName("td")[2].getElementsByTagName("img")[0].style.display = "block"; 
        myobject.getElementsByTagName("td")[2].getElementsByTagName("div")[0].style.display = "none";
    } catch (e) { }

    myinfo = document.getElementById("edoras_putz_geca_info");
    myfake = document.getElementById("edoras_putz_geca_fake");
    mywidth = parseInt(document.getElementById("edoras_putz_geca_width").innerHTML);
    myheadlinespace = document.getElementById("edoras_putz_geca_headlinespace");
    
    myobject.getElementsByTagName("img")[0].src = document.getElementById("edoras_putz_geca_dpfeil").innerHTML;
        
    var mypositon = edoras_putz_geca_findPos(myobject);
    
    if (myobject.getElementsByTagName("div")[0].innerHTML != "")
    {    
        myinfo.style.top = mypositon[1] + neuehoehe + "px";
        myinfo.style.left = mypositon[0] - mywidth + "px";    
        myinfo.style.width = mywidth - 8 + "px";          
        myinfo.style.height = myobject.offsetHeight - 6 + "px";        
        myinfo.innerHTML = myobject.getElementsByTagName("div")[0].innerHTML;
        myinfo.style.display = "block";
    
        myfake.style.top = mypositon[1] + neuehoehe + 1 + "px";
        myfake.style.left = (mypositon[0] - 1)  + 'px';    
        //document.title = "mypositon[0] " + mypositon[0] + " mywidth " + mywidth + " myfake.style.left " + myfake.style.left;
        myfake.style.height = myobject.offsetHeight + "px";
        myfake.style.display = "block";
    }
}
function edoras_putz_geca_mouseout(myobject)
{
    if(myobject.previousSibling) 
    {
        if(myobject.previousSibling != "[object Text]")
        {
            myobject.previousSibling.getElementsByTagName("td")[0].className ="space";
        }
        else
        {
            mynewobject = myobject.previousSibling;
            if(mynewobject.previousSibling)            
            {                
                mynewobject.previousSibling.getElementsByTagName("td")[0].className ="space";
            }
        }
    }
    else 
    {
        myobject.getElementsByTagName("td")[0].style.borderTop = "";
        myobject.getElementsByTagName("td")[1].style.borderTop = "";
        myobject.getElementsByTagName("td")[2].style.borderTop = "";
    }    
    
    if(myobject.nextSibling)
    {
        if(myobject.nextSibling != "[object Text]")
        {
            myobject.nextSibling.getElementsByTagName("td")[0].className ="space";
        }
        else
        {
            mynewobject = myobject.nextSibling;
            if(mynewobject.nextSibling)
            {                
                mynewobject.nextSibling.getElementsByTagName("td")[0].className ="space";
            }
        }
    }
    myobject.getElementsByTagName("td")[2].style.borderRight = ""; 
    
    try {
        myobject.getElementsByTagName("td")[2].getElementsByTagName("img")[0].style.display = "none"; 
        myobject.getElementsByTagName("td")[2].getElementsByTagName("div")[0].style.display = "block";
    } catch (e) { }    

    myobject.getElementsByTagName("img")[0].src = document.getElementById("edoras_putz_geca_pfeil").innerHTML;
                
    myinfo = document.getElementById("edoras_putz_geca_info");    
    myfake = document.getElementById("edoras_putz_geca_fake");
    
    myinfo.style.display = "none";
    myfake.style.display = "none";
}
/* ### Maschinen Uebersicht GECA Ending ### */

/* ### Seminare Overview GECA Opening ### */
function putz_overview_mouseover(myobject, mypageid)
{
    try {
        if (myobject.className == "seminar_overview_drop_down")
        {
            myobject.className="seminar_overview_drop_over";
        }
    } catch (e) { }
}
function putz_overview_mouseout(myobject, mypageid)
{
    try {
        if (myobject.className == "seminar_overview_drop_over")
        {
            myobject.className="seminar_overview_drop_down";
        }
    } catch (e) { }    
}
function putz_overview_click(myobject, mypageid)
{
    try {
        if (document.getElementById(mypageid).style.display == "block")
        {
            myobject.className="seminar_overview_drop_down";
            document.getElementById(mypageid).style.display = "none";
        } else {
            myobject.className="seminar_overview_drop_up";
            document.getElementById(mypageid).style.display = "block";
        }
    } catch (e) { }
}
/* ### Seminare Overview GECA Ending ### */


function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0; a&&i < a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i < a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i < d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i < d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


/**
 * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
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;
 
/* Begin GECA Sprach Umschaltung */


    function    selectgecago(select) 
    {
        var wert = select.options[select.options.selectedIndex].value;
        location.href = wert;    
        alert(select.options.selectedIndex);
    }

/* End GECA Sprach Umschaltung */