// Clear input box
function clearValue(field)
{
if (field.defaultValue == field.value)
field.value = "";
} 
