//Title:  General functions
//Summary:  General functions used throughout Council sites.
//Created:  13/12/2007

//Clear the form field when it is clicked on
function clearField(strDefault, objField) {
	if (objField.value == strDefault) {
		objField.value = "";
	}
}

function calendarPicker(strField) {
    window.open('../DatePicker.aspx?field=' + strField,'calendarPopup','width=250,height=190,resizable=yes');
}