function inputTextClear(handle, text) {
	if (handle.value == text) {
		handle.value = '';
	}
}

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