<script>

var clearEmail = function () {
	if (this.value == "e-mail") {
		this.value = "";

	}
}

var blurEmail = function () {
	if (this.value == "") {
		this.value = 'e-mail';
	}
}

var clearNombre = function () {
	if (this.value == "nombre") {
		this.value = "";

	}
}

var blurNombre = function () {
	if (this.value == "") {
		this.value = 'nombre';
	}
}
</script>