//contact form focusing

function focusText(text) {
	if (text.value==text.name) {
		text.value="";
		}
	}
	function blurText(text) {
	if (text.value=="") {
		text.value=text.name;
	}
}

