CM_Current = 1;
CML_Current = 1;
function CM_Flip(id) {
    if (id == CM_Current) return;
    document.getElementById('CM_' + CM_Current).style.display = 'none';
    document.getElementById('CM_m' + CM_Current).className = '';
    document.getElementById('CM_' + id).style.display = 'block';
    document.getElementById('CM_m' + id).className = 'Selected';
    CML_Flip(CM_Current, 1)
    CM_Current = id;

    if (SetHeightMain != null) SetHeightMain();
}
function CML_Flip(CMid,id) {
    
    if (id == CML_Current) return;
    document.getElementById('CML_' + CMid + CML_Current).style.display = 'none';
    document.getElementById('CML_' + CMid + id).style.display = 'block';
    CML_Current = id;

    //alert(SetHeightMain);
    if (SetHeightMain != null) SetHeightMain();
}    
//provided by Ali Arafati
