// clear a form field value
function clearField(oElement, pCheckString){
	if(oElement.value == pCheckString){
		oElement.value = "";
	}
}

function gotoPage(pString){
	self.location = pString;
}