function quickLink(url) {
	document.location.href = url;
	return true;
}

function fieldClear(el, defaultValue) {
	if (el.value == defaultValue) {
		el.value = '';
	}
}

function fieldDefault(el, defaultValue) {
	if (el.value == '') {
		el.value = defaultValue;
	}
}

// create a popup window for any links with class="popup"
$(document).ready(function(){
	$('a.popup').click(
		function(){
			var url = $(this).attr('href');
			window.open(url, '_blank', 'top=0, left=0, scrollbars=yes, menubar=yes, toolbar=yes, location=yes');
			return false;
		}
	);
});