﻿/**
* Remove a single object with id from page (tr, div, etc.)
*/
function removeObj(objId) {
    var obj = $(objId);
    new Effect.DropOut(obj, { duration: .5 });
    //	}
}

function restoreObj(objId) {
    var obj = $(objId);
    Effect.Appear(obj, { duration: .5 });
}

function frenchDisabled() {
    window.alert("The French content has been temporarily disabled for maintenance.");
}

function flashIn(objID) {
    var obj = $(objID);
    obj.show();
    new Effect.Highlight(obj);
}