function aw_confirmAction(msg, url) {
	if (confirm(msg)) {
		window.document.location.href = url;
	}
}

function aw_windowOpen(url, name, width, height) {
	window.open(url, name, "width="+width+",height="+height+",resizable=0,scrollbars=0,toolbar=0,location=0,directories=0,status=0,menubar=0,copyhistory=0");
	return false;
}

function aw_windowOpenExt(url, name, width, height) {
	window.open(url, name, "width="+width+",height="+height+",resizable=1,scrollbars=1,toolbar=1,location=1,directories=0,status=1,menubar=1,copyhistory=0");
	return false;
}

