// JavaScript Document

var locationBar = "no";
var statusBar = "no";

function popup(URL, width, height)
{
	var left = (screen.width/2) - width/2;
	var top = (screen.height/2) - height/2;

	fenster = window.open(URL, "popup", "width="+width+",height="+height+",left=" + left + ",top=" + top + ", scrollbars=yes, location=no, status=no");
	fenster.focus();
}
