
function openpage(url){
	f1 = open(url,'PopUp','width=560,height=540,location=no,toolbar=no,scrollbars=yes,resizable=yes,screenX=0,screenY=0');
	f1.focus();
}


//  Allgemeine-Funktionen  //


function openWin(url, breite, hoehe) {
	props = "width=" + breite + ",height=" + hoehe + ",toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0";
	awin=window.open(url,"mazz",props);
	awin.focus();
}


function openWinName(url, name, breite, hoehe) {
	props = "width=" + breite + ",height=" + hoehe + ",toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1";
	awin=window.open(url,name,props);
	awin.focus();
}