function hi(t) {
	t.className = 'hi';
}
function lo(t) {
	t.className = '';
}
function submitContent(url) {
	if (url != 'xx') {
		document.location = url;
	}
}
function clearField(t,d) {
	if (t.value == d) {
		t.value = '';
	}
}
