<!-- Original: wsabstract.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function checkrequired(which) {
	var pass=true;
	var reqFieldsMsg = "";
	
	if (document.images) {
		for (i=0;i<which.length;i++) {
			var tempobj=which.elements[i];
			if (tempobj.id.substring(0,8)=="required") {
				if (
					((tempobj.type=="text"||tempobj.type=="textarea")&&tempobj.value=='')
					 ||(tempobj.type.toString().charAt(0)=="s"&&tempobj.selectedIndex==0)) {
						pass=false;
						reqFieldsMsg += "\n" + tempobj.id;
						break;
         		}
      		}
   		}
	}

	if (!pass) {
		shortFieldName=tempobj.id.substring(8,30).toUpperCase();
		alert("Oops! You did not complete all of our required form fields. Please do so now." + reqFieldsMsg);
		return false;
	}
	else {
		return true;
	}
}
//  End -->
