function openWin(theURL,winName,features,x,y) {
		winName = window.open(theURL,'Aktuell','scrollbars=yes,resizable=yes',x,y);
		winName.resizeTo(x,y)
		winName.focus();
		}
 
function openAGB() {
		winName = window.open('agb.html','AGB','scrollbars=yes,resizable=yes',500,650);
		winName.resizeTo(500,650)
		winName.focus();
		}
		
function openBrowser(theURL) {
		winName = window.open(theURL,'NewsFeed','scrollbars=yes,resizable=yes',800,650);
		winName.resizeTo(800,650)
		winName.focus();
		}
