// JavaScript Document




function showDiv(div, status)
{
	document.getElementById(div).style.display=status;
}

function resizeIframe(iframe, widthOrHeight,value)
{
	document.getElementById(iframe).style.width=value+'px';
	
	//document.write (iframe +", "+value);
}


function Fensterweite () {
  if (window.innerWidth) {
    return window.innerWidth;
  } else if (document.body && document.body.offsetWidth) {
    return document.body.offsetWidth;
  } else {
    return 0;
  }
}

function Fensterhoehe () {
  if (window.innerHeight) {
    return window.innerHeight;
  } else if (document.body && document.body.offsetHeight) {
    return document.body.offsetHeight;
  } else {
    return 0;
  }
}

function neuAufbau () {
  if (Weite != Fensterweite() || Hoehe != Fensterhoehe())
    location.href = location.href;
}


function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function winopen(url,fenstername,breite,hoehe) {
	
	
	
      window.open(
				  url,
				  fenstername,
				  "width = "+breite+",height ="+hoehe+"status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no ,scrollbars = auto,fullscreen =no");
} 

