re.useOverState = false;

function init() {

}

window.onload = init;

function validateEmail(obj) {
		var test = obj.value;
		
		if (test != "") {
			index = test.indexOf("@");
			index2 = test.indexOf(".", index);
			if  (((index < 0) || (index2 < 0)) || (index2 == test.length - 1)) {
				alert("The email address entered is invalid.\nPlease try again.");
				obj.select();
				obj.focus();
				
				return false;
			}
			
			return true;
		} else {
			alert("Please enter a valid email address.");
			return false;
		}

	}


function validateSearch(fObj) {
	return;
}

function focusField(obj) {
	if (obj.value == "Search") obj.value = "";
}

function blurField(obj) {
	if (obj.value == "") obj.value = "Search";
}


