﻿// Script that handles the validation and select actions for the eZine signup
// File: subscribe.js
// Author: Anthony Huscher
// Company: The Source for Youth Ministry
// Date: December 13, 2007


// If the input field is blank the add the type search text
function setSearchField(inputField) {
	if (inputField.value == "") inputField.value = "Type Search";
}

// If the type search text is in the field then remove it
function selectSearchField(inputField) {
	if (inputField.value == "Type Search") inputField.value = "";
}

// If the input field is blank the add the enter email here text
function setEmailField(inputField) {
	if (inputField.value == "") inputField.value = "Enter email here";
}

// If the enter email here text is in the field then remove it
function selectEmailField(inputField) {
	if (inputField.value == "Enter email here") inputField.value = "";
}