// Make a box disappear
function togglePosition(elementID) {
	    document.getElementById(elementID).style.top = '-999em',
		document.getElementById(elementID).style.position = 'absolute';
	}

// Function to clear the text on inputs when they are clicked
function clearText(thefield) {
		if (thefield.defaultValue == thefield.value)
			thefield.value = ""
		else thefield.value = thefield.defaultValue
	} 