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

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function pngalpha() {
	if( navigator.appVersion.indexOf('MSIE 6.0') > 0 ) {
		var picId = 0;
		var overlayimage = '../bilder/spacer.png';
		while( picId < document.images.length ) {
			//Bildtyp ermitteln

			var ext = document.images[picId].src;
			ext = ext.substring(ext.length-3,ext.length);
			ext = ext.toLowerCase();

			if( ext == 'png' ) {
				var src = document.images[picId].src;
				var height = document.images[picId].height;
				var width = document.images[picId].width;
				document.images[picId].src = overlayimage;
				document.images[picId].height = height;
				document.images[picId].width = width;
				document.images[picId].style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "',sizingMethod='scale')";
			}
			++picId;
		}
	}
}
window.onload = pngalpha;

function go(x) 
{ 
	if (x == "nothing") 
	{
		document.forms[0].reset();
		document.forms[0].elements[0].blur(); return;
	} 

	else if (x == "end") top.location.href = parent.frames[0].location; 
	else 

	{
		document.forms[0].action=x;
		document.forms[0].method="post";
		document.forms[0].submit();
		document.forms[0].reset(); document.forms[0].elements[0].blur();
	} 
}



function setPointer(theRow, thePointerColor)
{
    if (thePointerColor == '' || typeof(theRow.style) == 'undefined') {
        return false;
    }

    if (typeof(document.getElementsByTagName) != 'undefined') {
        var theCells = theRow.getElementsByTagName('td');
    }

    else if (typeof(theRow.cells) != 'undefined') {
        var theCells = theRow.cells;
    }

    else {
        return false;
    }

    var rowCellsCnt  = theCells.length;
    for (var c = 0; c < rowCellsCnt; c++) {
        theCells[c].style.backgroundColor = thePointerColor;
    }
    return true;

} 