function isAlpha(elm){
	for (var i=0; i<elm.value.length; i++){
		if (elm.value.charAt(i) != " "){
			if ((elm.value.charAt(i) < "a" || elm.value.charAt(i) > "z") && (elm.value.charAt(i) < "A" || elm.value.charAt(i) > "Z")){
				return false;
			}
		}	
	}
	return true;
}
function isNumeric(elm){
	for (var i=0; i<elm.value.length; i++){
		if (elm.value.charAt(i) != " "){
			if (elm.value.charAt(i) < "0" || elm.value.charAt(i) > "9"){
				return false;
			}
		}	
	}
	return true;
}		
function isAlphaNumeric(elm){
	for (var i=0; i<elm.value.length; i++){
		if (elm.value.charAt(i) != " "){
			if ((elm.value.charAt(i) < "0" || elm.value.charAt(i) > "9") && (elm.value.charAt(i) < "a" || elm.value.charAt(i) > "z") && (elm.value.charAt(i) < "A" || elm.value.charAt(i) > "Z")) return false;
		}
	}
	return true;
}

function isURL(elm){
	if (elm.value.indexOf(".") == "-1" && isAlpha(elm)) {
		return true;
	} else {
		return false;
	}
}
	
function goBackToPage() {
	window.location.href ="/index.jsp";
}

function startTimer() {
	window.setTimeout("goBackToPage()", 5000);
}

function clearText(thefield){
  if (thefield.defaultValue==thefield.value)  thefield.value = ""
} 

