function openwindow(f,n,w,h,s) {
	url = f;
	s=1;
	namet = n; //Variable Windowname edited by NR
	ww  = w;
	hh = h;
		if (s < 1) sb = s;
			else sb = 1;
	var detailwin = window.open(url,namet,'width='+ww+',height='+hh+',dependent=1,toolbar=0,directories=0,menubar=0,status=0,resizable=1,location=0,scrollbars='+sb+',copyhistory=0');
	detailwin.focus();
}
function doPrompt(){
	var userInput, adWindow;
	userInput = prompt("Bitte geben Sie Ihren Account ein.","");
	if(userInput != null && userInput != ""){
		var xPos, yPos
		xPos = screen.width - 710
		yPos = screen.height - 560
		top.window.resizeTo(800,580);
		top.window.moveTo(0,0);
		adWindow = window.open("/"+userInput,"adWindow50","width=700,height=500,left="+xPos+",top="+yPos+",resizable=yes");
		adWindow.focus();
	}
}

function Popup(url,name,eigenschaften)
{
Hf = window.open(url,name,eigenschaften);
}
