// Display a popup window
function popupWindow(url, name, width, height) {
        var w = window.open(url, name, "width=" + width + ",height=" + height + ",left=0,top=0,scrollbars=yes,resizable=yes,status=no,toolbar=no,menubar=no");
	// Bring to front
	w.focus();
}
