function domload(){
	if (document.body){ GELADEN()
		if (document.forms.length > 0){ 
			for(i=0;i<document.forms.length;i++){
				document.forms[i].onsubmit = function(){ 
					LEEG = 0;
					for(ii=0;ii<this.elements.length;ii++){
						if (this.elements[ii].value == ""){ LEEG += 1; }
					}
					if (((LEEG*100)/this.elements.length) > 30){ return(false) }
				}	
			}
		}
	} else {
		setTimeout("domload()",20)
	}
}
domload()
