function openPopup(url,title,width,height,scrollbars){
	if(scrollbars){
		scrollbars = "yes";
	}else{
		scrollbars = "no";
	}
	var objekt=window.open(url, title, "width="+width+", height="+height+", menubar=no, resizable=no, locationbar=no, statusbar=no, scrollbars="+scrollbars);
}
