function FormValidation() {

        if(!check_exceptions()) {
        alert(exception_msg);
        return false;
    }
	    
	if(document.getElementById('product_avail'))
	    if(document.getElementById('product_avail').value == 0) {
    	    alert("<font color=\"red\">Нет на складе<\/font>");
        	return false;
	    }

    return true;
}
