/*
################################################################################
#
# Program	: validate_signup.js
#
# Description	: client-side validation of form data entry for GDINet signup
#		:
#
# Author	: Krys Wallbank
# 		: Groovy Web Services
#		: krys@groovy-web.com
#
# Version	: 1.0.1
#		:
#		: Copyright (c) 2003, All Rights Reserved
#
################################################################################

################################################################################
# MAIN PROGRAM
################################################################################
*/
function validate(textObj, message, length) {

	if (textObj.value.length <= 0) {

		alert(message);

		textObj.focus();

		return false;

	}

	return true;
}