function text_ausgabe(text) {
      document.bild.Ausgabe.value = text;
}

// ---------------------------------------------

function popup(url) {
 //fenster=window.open(url, "www.energieberatung-regional.de", "width=628, height=588, status=no, menubar=no, scrollbars=yes, resizable=no");
fenster=window.open(url, "Popupfenster", "width=628,height=588,resizable=no,scrollbars=yes");
 fenster.focus();
 return false;
}

// ---------------------------------------------

function winopen(seite) {
// Here resize the PopUp
var popUpSizeX=628;
var popUpSizeY=588;

// Here move it to any poiny on screen	
var popUpLocationX=25;
var popUpLocationY=02;

// URL of the popUp
//var popUpURL="login/login.php";
var popUpURL=seite;


splashWin = window.open("",'x','fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=0');

splashWin.blur();
window.focus();

splashWin.resizeTo(popUpSizeX,popUpSizeY);
splashWin.moveTo(popUpLocationX,popUpLocationY);
splashWin.location=popUpURL;
splashWin.focus();
}


