
				<!--
				function validateElement(thisElement, message){
					with(thisElement){
						if(value == null || value == ""){
							alert(message);
							return false;
						} else
							return true;
					}
				}


				function getValue(thisField){
					with(thisField){
						if(value == null || value == "")
							return 0;
						else
							return value;
					}
				}

				//-->
