function setupCustomerBranding()
{
    var brandingElem = document.getElementById("locationBranding");

// Comments 
// This file prints the logo text for those databases that are supplied by iCONN to the end user
//
if ((location.href.indexOf("p=SPN.SP") > 0 ) ||
    (location.href.indexOf("p=HRCA") > 0) ||
    (location.href.indexOf("p=SPJ.SP") > 0) ||
    (location.href.indexOf("p=GRGM") > 0) ||
    (location.href.indexOf("p=CDB") > 0) ||
    (location.href.indexOf("p=STOM") > 0) ||
    (location.href.indexOf("p=EAIM") > 0) ||
    (location.href.indexOf("p=ITOF") > 0) ||     
    (location.href.indexOf("p=LT") > 0) ||
    (location.href.indexOf("p=GVRL") > 0) ||
    (location.href.indexOf("p=STOJ") > 0) ||
    (location.href.indexOf("p=AONE") > 0) ||
    (location.href.indexOf("p=IFME") > 0) ||
    (location.href.indexOf("p=PROF") > 0) ||
    (location.href.indexOf("p=PPCA") > 0) ||
    (location.href.indexOf("p=PPAG") > 0) ||
    (location.href.indexOf("p=PPCJ") > 0) ||
    (location.href.indexOf("p=PPCM") > 0) ||
    (location.href.indexOf("p=PPES") > 0) ||
    (location.href.indexOf("p=PPFA") > 0) ||
    (location.href.indexOf("p=PPGL") > 0) ||
    (location.href.indexOf("p=PPHI") > 0) ||
    (location.href.indexOf("p=PPNU") > 0) ||
    (location.href.indexOf("p=PPPC") > 0) ||
    (location.href.indexOf("p=PPFA") > 0) ||
    (location.href.indexOf("p=PPTH") > 0) ||
    (location.href.indexOf("p=STND") > 0) ||
    (location.href.indexOf("p=PPCJ") > 0) ||
    (location.href.indexOf("p=PPVC") > 0) ||
    (location.href.indexOf("p=PPGS") > 0) ||
    (location.href.indexOf("p=PPRP") > 0) ||
    (location.href.indexOf("p=PPWT") > 0) ||
    (location.href.indexOf("p=PPDS") > 0) ||
    (location.href.indexOf("p=PPIS") > 0) ||
    (location.href.indexOf("p=PPOP") > 0) ||
    (location.href.indexOf("p=PPUS") > 0) ||
    (location.href.indexOf("p=PPMI") > 0) ||
    (location.href.indexOf("p=PPSB") > 0) ||
    (location.href.indexOf("p=PPSM") > 0) ||
    (location.href.indexOf("p=PPGB") > 0) ||    
    (location.href.indexOf("KidsInfoBits") > 0) ||
    (location.href.indexOf("BGMI") > 0) ||
    (location.href.indexOf("HWRC") > 0) ||
    (location.href.indexOf("BCRC") > 0) ||
    (location.href.indexOf("BIM") > 0) ||
    (location.href.indexOf("OVIC") > 0) ||
    (location.href.indexOf("ovic") > 0) ||
    (location.href.indexOf("UHIC") > 0) ||
    (location.href.indexOf("uhic") > 0) ||
    (location.href.indexOf("BIC1") > 0) ||
    (location.href.indexOf("bic1") > 0) ||
    (location.href.indexOf("WHIC") > 0) ||
    (location.href.indexOf("whic") > 0) ||    
    (location.href.indexOf("SCIC") > 0) ||
    (location.href.indexOf("scic") > 0) ||
    (location.href.indexOf("GBFM") > 0) ||
    (location.href.indexOf("BCPM") > 0) ||
    (location.href.indexOf("prodId=NRC") > 0) ||
    (location.href.indexOf("prodId=SBRC") > 0) ||
    (location.href.indexOf("p=STO") > 0))

{
var n1 = document.createElement("a");
n1.setAttribute("href","http://www.iconn.org/");
var n2 = document.createElement("img");
n2.setAttribute("border","0");
n2.setAttribute("src","http://access.gale.com/image/iconn.gif");
n1.appendChild(n2);
brandingElem.appendChild(n1);


}
}
addWindowLoadEvent(setupCustomerBranding);



