function kf_check(fob) {
    var cp = true;
    var tx_flds = new Array(
     'kf_firstname',
     'kf_lastname',
     'kf_street',
     'kf_zipcode',
     'kf_city',
     'kf_email',
     'kf_phone',
     'kf_comment'    
     );
    Element.hide('kf_error')
      
    for(j=0;j<tx_flds.length;j++) {
        tmpo = $(tx_flds[j]);
        if(!tmpo.value) { 
            tmpo.style.borderColor='red';
            cp = false;
           
        } else {
            tmpo.style.borderColor='';
        }
        if(tmpo.name=='email' && !checkMail(tmpo.value)) {
            cp = false;
            tmpo.style.borderColor="red";   
        } else if(tmpo.value) {
            tmpo.style.borderColor="";
        }
    }
    if(!cp) {
        Element.show('kf_error');
    }
    return cp;
}