

function clearinput(t, txt) {
if (t.value==txt) {
t.value = '';
}
}

function restoreinput(t,txt) {
if (t.value == '') {
t.value = txt;
}
}

