function ToggleDetails(id){
	if (document.getElementById("FrontImg_" + id).src.indexOf ("images/icons/expand.gif") > 0){
		document.getElementById("FrontImg_" + id).src = "images/icons/collapse.gif";
		document.getElementById("FrontImg_" + id).alt = "Maximieren";

		var items = this.document.getElementsByTagName("TR")

		for(i = 0; i < items.length; i++){
			if (items[i].id.indexOf ('FrontRow_' + id) == 0){
				items[i].style.display = '';
			}
		}
	}
	else{
		document.getElementById("FrontImg_" + id).src = "images/icons/expand.gif";
		document.getElementById("FrontImg_" + id).alt = "Minimieren";

		var items = this.document.getElementsByTagName("TR")
		var length = items.length;

		for(i = 0; i < length; i++){
			if (items[i].id.indexOf ('FrontRow_' + id) == 0){
				items[i].style.display = 'none';
			}
		}
	}
}

function ShowWindow(url,width,height){
     var nets = navigator.appName == "Netscape";
     if (nets){
          window.open(url,
          '_blank',
          'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizeable=1,width='+width+',height='+height);
     }
     else{
          winpop=window.open(url,
          "_blank",
          "[toolbar=no, location=no, directories=no, status=no, menubar=no,scrollbars=yes, resizeable=yes, width="+width+", height="+height+"]");
     }
}
