/* Cached: 20120207195314 */

function checkForm(formName){    
    var error	= false;
    var msg		= '';
    var myFocus = '';
    
    if (formName == 'sucheUrteile' || formName == 'inhaltssuche' || formName == 'inhaltssucheSmall') {    
        if (document[formName].query.value=='' || document[formName].query.value.length <3 ){            
            error = true;
            msg += 'Ihr Suchbegriff ist kürzer als 3 Zeichen!';
            myFocus = document[formName].query;
        }        
    }
    
    if (error == true) {
        alert(msg += '\nBitte ändern Sie dies!');
        if(myFocus!=''){
            myFocus.focus();
        }
        return false;
    }
    return true;
}


