function _AND(o1, o2) {
    return o1 && o2;
}

function _OR(o1, o2) {
    return o1 || o2;
}

function _LT(o1, o2){
    return o1 < o2;
}

function _LTE(o1, o2){
    return o1 <= o2;
}

function _GT(o1, o2){
    return o1 > o2;
}

function _GTE(o1, o2){
    return o1 >= o2;
}

function _EQ(o1, o2){
    return o1 == o2;
}

function _NEQ(o1, o2){
    return o1 != o2;
}

function escapingHtmlElement(str){
    return str.replace('&lt;','<').replace('&gt;','>').replace('&amp;nbsp;', ' ');
}

function insertAmp(s){
    return "&" + s;
}
