function checkForm() {




f=document.the_form;

i=j=0;
l=f.length;

fn="   ";

while(--l)	{
	
	if((f[i].type=="text"||f[i].type=="textarea" || f[i].type=="hidden" ) && (f[i].value=="")&&(f[i].id!="no")) {fn = fn +f[i++].id+'\n   ';j++;}
	else if ((f[i].type.indexOf("select") != -1) && (f[i][f.radius.selectedIndex].value=="00")) { fn = fn +f[i++].id+'\n   ';j++; } 
	else i++;
}
if(j){ alert('YOU HAVE NOT:\n' + fn);}

else if( (f.zip.value.length != 5) || f.zip.value.match(/[a-z]+/) )alert('ZIP CODES HAVE 5 NUMBERS!');

else  f.submit();
}



function stickIt (cash) {

	f=document.the_form.cashes;
	cur=f.value;
	
	if(cur.indexOf(cash)<0) {
		new_v=cur+','+cash ;
		f.value=new_v;
	}

}

function clean(d) {
	
	d.value='';
	
}