function openPopup(url)
{
 	var optionsPopup = "scrollbars=no,resizable=no,menubar=no,location=no,width=300,height=500";
 	
 	var Fenster = window.open(url, "popup", optionsPopup);
 	Fenster.focus(); 	
}
