function formTextAutoClear(id, defaultText) {
	var text = $(id);

	if (text.value == defaultText) {
		text.value = '';
	}
}

function awConfirmAction(message, url) {
	if (confirm(message)) {
		document.location.href = url;
	}
}

function selectFullPath(id) {
	var input = $('pathList_'+id);

	input.focus();
	input.select();
}
