function formfocus(form,text)
{	
	if (form.value == text) {
		form.value = ''
	}
}

function formblur(form,text)
{	
	if (form.value == '') {
		form.value = text
	}
}