function clearbox()
{
	var form = document.form1;
	
	form.Subcriber1.value = "";
}

function clearme(fe,txt){
	// check to see that the form element is the default text
	if (fe.value == txt){
		// clear the default text
		fe.value = "";
	}
	return;
}

function writeme(fe){
	// check to see that the form element is the default text
	if (fe.value == ""){
		// clear the default text
		fe.value = "Search";
	}
	return;
}

function writeme2(fe){
	// check to see that the form element is the default text
	if (fe.value == ""){
		// clear the default text
		fe.value = "";
	}
	return;
}

