function confirmURL(u, m) {
	if (confirm(m))
		document.location = u;
}

function openWin(u) {
	var w = 500, h = 550, x, y, win;

	x = parseInt(screen.width / 2.0) - (w / 2.0);
	y = parseInt(screen.height / 2.0) - (h / 2.0);

	win = window.open(u, 'admin', 'left=' + x + ',top=' + y + ',width=' + w + ',height=' + h + ',scrollbars=yes');

	try {
		win.focus();
		win.resizeTo(w, h);
	} catch(e) {
		// Do nothing
	}
}

