// Pop

function popupHelp(which) {
    kilroyPop("DispatchServlet?cmd=request_popup&group=" + which + "&k_pgen=" + kilroyPageGeneration, null, 600, 400);
}

function kilroyPop(url,name,windowWidth,windowHeight) {
    var myleft = screen.width ? (screen.width - windowWidth) / 2 : 100;
    var mytop = screen.height ? (screen.height - windowHeight) / 2 : 100;
    var properties = "directories=no,menubar=no,location=no,personalbar=no,toolbar=no,status=no,scrollbars=yes,resizable=yes"
	+ ",width="+windowWidth+",height="+windowHeight+",top="+mytop+",left="+myleft;
    window.open(url, name, properties)
}
