var g_sImgCont="";
var g_sTxtCont="";
var g_sGlideBox = "";
var g_sContainer="";


//-----------------------------------------------
// setImgCont
//   set id of image content div
//
function setImgCont(sImgCont) {
    g_sImgCont = sImgCont;
}

//-----------------------------------------------
// setTxtCont
//   set id of text content div
//
function setTxtCont(sTxtCont) {
    g_sTxtCont = sTxtCont;
}

//-----------------------------------------------
// setGlideBox
//   set id of glide box
//
function setGlideBox(sGlideBox) {
    g_sGlideBox = sGlideBox;
}

//-----------------------------------------------
// setContainer
//   set id of the containing element (def:body)
//
function setContainer(sContainer) {
    g_sContainer = sContainer;
}


