
function TagToTipStyle(StrText, StrThisPageStyle) 
{
    var sBGCOLOR = getBGCOLOR(StrThisPageStyle)
    var sBORDERCOLOR = getBORDERCOLOR(StrThisPageStyle)
    TagToTip(StrText, BGCOLOR, sBGCOLOR, BORDERCOLOR, sBORDERCOLOR);
}


function TipStyle(StrText, StrThisPageStyle) 
{
    var sBGCOLOR = getBGCOLOR(StrThisPageStyle)
    var sBORDERCOLOR = getBORDERCOLOR(StrThisPageStyle)
    Tip(StrText, BGCOLOR, sBGCOLOR, BORDERCOLOR, sBORDERCOLOR);
}

function getBGCOLOR(StrThisPageStyle)
{
    var sBGCOLOR = '#D4EEF7';
    if(StrThisPageStyle == "Servicewelt") {
        sBGCOLOR = '#DFECDD';
    }
    return sBGCOLOR;  
}


function getBORDERCOLOR(StrThisPageStyle)
{
    var sBORDERCOLOR = '#004588';
    if(StrThisPageStyle == "Servicewelt") {
        sBORDERCOLOR = '#407B39';
    }
    return sBORDERCOLOR;  
}


