function popUp(Mywindow, Navn, bredde, hoejde, scrollbar){
	if (navigator.appName != "Microsoft Internet Explorer")
		window.open(Mywindow,Navn, 'width=' + bredde + ',height=' + hoejde + ',scrollbars='+scrollbar+',toolbar=0,menubar=0,resizable=0');
	else
	if (navigator.appVersion >= "4")
		window.open(Mywindow, Navn, 'width=' + bredde + ',height=' + hoejde + ',scrollbars='+scrollbar+',toolbar=0,menubar=0,resizable=0');
	else
		window.open(Mywindow, Navn, 'width=' + bredde + ',height=' + hoejde + ',scrollbars='+scrollbar+',toolbar=0,menubar=0,resizable=0');
}
