// div toggle
function toggle(id){
 if(document.getElementById(id).style.display == 'none')
 {
  document.getElementById(id).style.display = 'block';
  //document.getElementById(img).src = 'img/minus.gif'; 
 }
 else
 {
  document.getElementById(id).style.display = 'none';
  //document.getElementById(img).src = 'img/plus.gif'; 
 }

}


// rahmen toggle
function toggleRahmen(id){
	//alert(document.getElementById(id).style.borderWidth + " " + id);
 if(document.getElementById(id).style.borderWidth == '0px 0px 0px 0px')
 {
  document.getElementById(id).style.borderWidth = '1px 1px 1px 1px';
  //alert("xxxx");
  //document.getElementById(img).src = 'img/minus.gif'; 
 }
 else
 {
  document.getElementById(id).style.borderWidth = '0px 0px 0px 0px';
  //document.getElementById(img).src = 'img/plus.gif'; 
 }

}





//pop allgemein

var fleft = 20;
var ftop = 20;
function popup(myLink,windowName,breite,hoehe,sc,top,left)

  {
var windowprops = "width=" + breite + ",height=" + hoehe + ",locationbar=no,status=no,scrollbars=" + sc + ",resizable=no,toolbar=no,top=" + ftop + ",left=" + fleft + ",screenX=" + fleft + ",screenY=" + ftop +'"';
  if(! window.focus)return;
  var myWin=window.open("",windowName,windowprops);
  myWin.focus();
  myLink.target=windowName;
  }
  
 
