function doAlert(msg) {
	alert(msg);
}

function doConfirm(msg) {
	return confirm(msg);
}
