IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_9', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_12', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_15', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_18', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_21', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_24', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_27', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_30', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_33', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_36', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_39', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_42', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_45', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_48', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_51', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_54', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_57', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_60', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_63', '0');
IMpreload('A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files', 'shapeimage_66', '0');
var MINIMUM_FONT = "10";
var UNITS = "";

function elementFontSize(element)
{
    var fontSize = MINIMUM_FONT; 

    if (document.defaultView)
    {
        var computedStyle = document.defaultView.getComputedStyle(element, null);
        if (computedStyle)
        {
            fontSize = computedStyle.getPropertyValue("font-size");
        }
    }
    else if (element.currentStyle)
    {
        fontSize = element.currentStyle.fontSize;
    }

    if ((UNITS.length == 0) && (fontSize != MINIMUM_FONT))
    {
        UNITS = fontSize.substring(fontSize.length - 2, fontSize.length)
    }

    return parseFloat(fontSize);
}

function adjustFontSizeIfTooBig(idOfElement)
{
    var oTextBoxOuterDiv;
    var oTextBoxMiddleDiv;
    var oTextBoxInnerDiv;
    var oTextBoxOuterDiv = document.getElementById(idOfElement);
    
    if (oTextBoxOuterDiv)
    {
        oTextBoxMiddleDiv = getChildOfType(oTextBoxOuterDiv, "DIV", 0);
        if (oTextBoxMiddleDiv)
        {
            oTextBoxInnerDiv = getChildOfType(oTextBoxMiddleDiv, "DIV", 0);
            if (oTextBoxInnerDiv)
            {
                var offsetHeight = oTextBoxInnerDiv.offsetHeight;
                var specifiedHeight = offsetHeight;
                if (oTextBoxMiddleDiv.style.height != "")
                {
                    specifiedHeight = parseFloat(oTextBoxMiddleDiv.style.height);
                }
                else if (oTextBoxOuterDiv.style.height != "")
                {
                    specifiedHeight = parseFloat(oTextBoxOuterDiv.style.height);
                }
                if (offsetHeight > specifiedHeight)
                {
                    var smallestFontSize = 200;
                    
                    var aParaChildren = getParaDescendants(oTextBoxInnerDiv);
                    var oneLine = false;
                    for (i = 0; i < aParaChildren.length; i++)
                    {
                        var oParagraphDiv = aParaChildren[i];
                        var lineHeight = elementLineHeight(oParagraphDiv);
                        oneLine = oneLine || (lineHeight * 1.5 >= specifiedHeight);
                        if (oParagraphDiv.nodeName == "DIV")
                        {
                            var fontSize = elementFontSize(oParagraphDiv);
                            smallestFontSize = Math.min( smallestFontSize, fontSize );
                            for (j = 0; j < oParagraphDiv.childNodes.length; j++)
                            {
                                var oSpan = oParagraphDiv.childNodes[j];
                                if ((oSpan.nodeName == "SPAN") || (oSpan.nodeName == "A"))
                                {
                                    fontSize = elementFontSize(oSpan);
                                    smallestFontSize = Math.min( smallestFontSize, fontSize );
                                }
                            }
                        }
                    }
                    var minimum = parseFloat(MINIMUM_FONT);
                    
                    var count = 0
                    while ((smallestFontSize > minimum) && (offsetHeight > specifiedHeight) && (count < 10))
                    {
                        ++ count;
                        if (oneLine)
                        {
                            var oldWidth = parseInt(oTextBoxOuterDiv.style.width);
                            oTextBoxInnerDiv.style.width =
                                "" + oldWidth * Math.pow(1.05, count) + "px";
                        }
                        else
                        {
                            var scale = Math.max(0.95, minimum / smallestFontSize);
                            
                            for (i = 0; i < aParaChildren.length; i++)
                            {
                                var oParagraphDiv = aParaChildren[i];
                                if (oParagraphDiv.nodeName == "DIV")
                                {
                                    var paraFontSize = elementFontSize(oParagraphDiv) * scale;
                                    var paraLineHeight = elementLineHeight(oParagraphDiv) * scale;
                                    for (j = 0; j < oParagraphDiv.childNodes.length; j++)
                                    {
                                        var oSpan = oParagraphDiv.childNodes[j];
                                        if ((oSpan.nodeName == "SPAN") || (oSpan.nodeName == "A"))
                                        {
                                            var spanFontSize = elementFontSize(oSpan) * scale;
                                            var spanLineHeight = elementLineHeight(oSpan) * scale;
                                            oSpan.style.fontSize = spanFontSize + UNITS;
                                            oSpan.style.lineHeight = spanLineHeight + UNITS;
                                            smallestFontSize = Math.min( smallestFontSize, spanFontSize );
                                        }
                                    }
                                    oParagraphDiv.style.fontSize = paraFontSize + UNITS;
                                    oParagraphDiv.style.lineHeight = paraLineHeight + UNITS;
                                    smallestFontSize = Math.min( smallestFontSize, paraFontSize );
                                }
                            }
                        }
                        
                        offsetHeight = oTextBoxInnerDiv.offsetHeight;
                    }
                }
            }
        }
    }
}


function elementLineHeight(element)
{
    var lineHeight = MINIMUM_FONT; 
    
    if (document.defaultView)
    {
        var computedStyle = document.defaultView.getComputedStyle(element, null);
        if (computedStyle)
        {
            lineHeight = computedStyle.getPropertyValue("line-height");
        }
    }
    else if (element.currentStyle)
    {
        lineHeight = element.currentStyle.lineHeight;
    }
    
    if ((UNITS.length == 0) && (lineHeight != MINIMUM_FONT))
    {
        UNITS = lineHeight.substring(lineHeight.length - 2, lineHeight.length)
    }
    
    return parseFloat(lineHeight);
}

function adjustLineHeightIfTooBig(idOfElement)
{
    var oTextBoxOuterDiv;
    var oTextBoxMiddleDiv;
    var oTextBoxInnerDiv;
    var oTextBoxOuterDiv = document.getElementById(idOfElement);
    
    if (oTextBoxOuterDiv)
    {
        oTextBoxMiddleDiv = getChildOfType(oTextBoxOuterDiv, "DIV", 0);
        if (oTextBoxMiddleDiv)
        {
            oTextBoxInnerDiv = getChildOfType(oTextBoxMiddleDiv, "DIV", 0);
            if (oTextBoxInnerDiv)
            {
                var offsetHeight = oTextBoxInnerDiv.offsetHeight;
                var specifiedHeight = offsetHeight;
                if (oTextBoxMiddleDiv.style.height != "")
                {
                    specifiedHeight = parseFloat(oTextBoxMiddleDiv.style.height);
                }
                else if (oTextBoxOuterDiv.style.height != "")
                {
                    specifiedHeight = parseFloat(oTextBoxOuterDiv.style.height);
                }
                if (offsetHeight > specifiedHeight)
                {
                    var adjusted = true;
                    var count = 0;
                    while ((adjusted) && (offsetHeight > specifiedHeight) && (count < 10))
                    {
                        adjusted = false;
                        ++ count;
                        
                        var aParaChildren = getParaDescendants(oTextBoxInnerDiv);
                        for (i = 0; i < aParaChildren.length; i++)
                        {
                            var oParagraphDiv = aParaChildren[i];
                            if (oParagraphDiv.nodeName == "DIV")
                            {
                                var fontSize = elementFontSize(oParagraphDiv);
                                var lineHeight = elementLineHeight(oParagraphDiv) * 0.95;
                                if (lineHeight >= (fontSize * 1.1))
                                {
                                    oParagraphDiv.style.lineHeight = lineHeight + UNITS;
                                    adjusted = true;
                                }
                                
                                
                                
                                for (j = 0; j < oParagraphDiv.childNodes.length; j++)
                                {
                                    var oSpan = oParagraphDiv.childNodes[j];
                                    if ((oSpan.nodeName == "SPAN") || (oSpan.nodeName == "A"))
                                    {
                                        var fontSize = elementFontSize(oSpan);
                                        var lineHeight = elementLineHeight(oSpan) * 0.95;
                                        if (lineHeight >= (fontSize * 1.1))
                                        {
                                            oSpan.style.lineHeight = lineHeight + UNITS;
                                            var adjusted = true;
                                        }
                                    }
                                }
                            }
                        }
                        
                        offsetHeight = oTextBoxInnerDiv.offsetHeight;
                    }
                }
            }
        }
    }
}

var smallTransparentGif = "";
function fixupIEPNG(strImageID, transparentGif) 
{
    smallTransparentGif = transparentGif;
    if (windowsInternetExplorer && (browserVersion < 7))
    {
        var img = document.getElementById(strImageID);
        if (img)
        {
            var src = img.src;
            img.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "', sizingMethod='scale')";
            img.src = transparentGif;
            img.attachEvent("onpropertychange", imgPropertyChanged);
        }
    }
}

function getChildOfType(oParent, sNodeName, requestedIndex)
{
    var childrenOfType = oParent.getElementsByTagName(sNodeName);
    return (requestedIndex < childrenOfType.length) ?
           childrenOfType.item(requestedIndex) : null;
}

function getParaDescendants(oAncestor)
{
    var oParaDescendants = new Array();
    var oPotentialParagraphs = oAncestor.getElementsByTagName('DIV');
    for (var iIndex=0; iIndex<oPotentialParagraphs.length; iIndex++)
    {
        var oNode = oPotentialParagraphs.item(iIndex);
        if (oNode.className.lastIndexOf('paragraph') != -1)
        {
            oParaDescendants.push(oNode);
        }
    }
    return oParaDescendants;
}

function onPageLoad()
{
    detectBrowser();
    adjustLineHeightIfTooBig("id1");
    adjustFontSizeIfTooBig("id1");
    adjustLineHeightIfTooBig("id3");
    adjustFontSizeIfTooBig("id3");
    adjustLineHeightIfTooBig("id5");
    adjustFontSizeIfTooBig("id5");
    adjustLineHeightIfTooBig("id7");
    adjustFontSizeIfTooBig("id7");
    adjustLineHeightIfTooBig("id9");
    adjustFontSizeIfTooBig("id9");
    adjustLineHeightIfTooBig("id10");
    adjustFontSizeIfTooBig("id10");
    adjustLineHeightIfTooBig("id12");
    adjustFontSizeIfTooBig("id12");
    adjustLineHeightIfTooBig("id14");
    adjustFontSizeIfTooBig("id14");
    adjustLineHeightIfTooBig("id15");
    adjustFontSizeIfTooBig("id15");
    adjustLineHeightIfTooBig("id18");
    adjustFontSizeIfTooBig("id18");
    adjustLineHeightIfTooBig("id19");
    adjustFontSizeIfTooBig("id19");
    adjustLineHeightIfTooBig("id20");
    adjustFontSizeIfTooBig("id20");
    adjustLineHeightIfTooBig("id21");
    adjustFontSizeIfTooBig("id21");
    adjustLineHeightIfTooBig("id24");
    adjustFontSizeIfTooBig("id24");
    adjustLineHeightIfTooBig("id25");
    adjustFontSizeIfTooBig("id25");
    adjustLineHeightIfTooBig("id26");
    adjustFontSizeIfTooBig("id26");
    adjustLineHeightIfTooBig("id27");
    adjustFontSizeIfTooBig("id27");
    adjustLineHeightIfTooBig("id30");
    adjustFontSizeIfTooBig("id30");
    adjustLineHeightIfTooBig("id31");
    adjustFontSizeIfTooBig("id31");
    adjustLineHeightIfTooBig("id32");
    adjustFontSizeIfTooBig("id32");
    adjustLineHeightIfTooBig("id33");
    adjustFontSizeIfTooBig("id33");
    adjustLineHeightIfTooBig("id36");
    adjustFontSizeIfTooBig("id36");
    adjustLineHeightIfTooBig("id37");
    adjustFontSizeIfTooBig("id37");
    adjustLineHeightIfTooBig("id38");
    adjustFontSizeIfTooBig("id38");
    adjustLineHeightIfTooBig("id39");
    adjustFontSizeIfTooBig("id39");
    adjustLineHeightIfTooBig("id42");
    adjustFontSizeIfTooBig("id42");
    adjustLineHeightIfTooBig("id43");
    adjustFontSizeIfTooBig("id43");
    adjustLineHeightIfTooBig("id44");
    adjustFontSizeIfTooBig("id44");
    adjustLineHeightIfTooBig("id45");
    adjustFontSizeIfTooBig("id45");
    adjustLineHeightIfTooBig("id48");
    adjustFontSizeIfTooBig("id48");
    adjustLineHeightIfTooBig("id49");
    adjustFontSizeIfTooBig("id49");
    adjustLineHeightIfTooBig("id50");
    adjustFontSizeIfTooBig("id50");
    adjustLineHeightIfTooBig("id51");
    adjustFontSizeIfTooBig("id51");
    adjustLineHeightIfTooBig("id54");
    adjustFontSizeIfTooBig("id54");
    adjustLineHeightIfTooBig("id55");
    adjustFontSizeIfTooBig("id55");
    adjustLineHeightIfTooBig("id56");
    adjustFontSizeIfTooBig("id56");
    adjustLineHeightIfTooBig("id57");
    adjustFontSizeIfTooBig("id57");
    adjustLineHeightIfTooBig("id60");
    adjustFontSizeIfTooBig("id60");
    adjustLineHeightIfTooBig("id61");
    adjustFontSizeIfTooBig("id61");
    adjustLineHeightIfTooBig("id62");
    adjustFontSizeIfTooBig("id62");
    adjustLineHeightIfTooBig("id63");
    adjustFontSizeIfTooBig("id63");
    adjustLineHeightIfTooBig("id66");
    adjustFontSizeIfTooBig("id66");
    adjustLineHeightIfTooBig("id67");
    adjustFontSizeIfTooBig("id67");
    adjustLineHeightIfTooBig("id68");
    adjustFontSizeIfTooBig("id68");
    adjustLineHeightIfTooBig("id69");
    adjustFontSizeIfTooBig("id69");
    adjustLineHeightIfTooBig("id70");
    adjustFontSizeIfTooBig("id70");
    adjustLineHeightIfTooBig("id73");
    adjustFontSizeIfTooBig("id73");
    adjustLineHeightIfTooBig("id74");
    adjustFontSizeIfTooBig("id74");
    adjustLineHeightIfTooBig("id75");
    adjustFontSizeIfTooBig("id75");
    adjustLineHeightIfTooBig("id76");
    adjustFontSizeIfTooBig("id76");
    adjustLineHeightIfTooBig("id79");
    adjustFontSizeIfTooBig("id79");
    adjustLineHeightIfTooBig("id80");
    adjustFontSizeIfTooBig("id80");
    adjustLineHeightIfTooBig("id81");
    adjustFontSizeIfTooBig("id81");
    adjustLineHeightIfTooBig("id82");
    adjustFontSizeIfTooBig("id82");
    adjustLineHeightIfTooBig("id85");
    adjustFontSizeIfTooBig("id85");
    adjustLineHeightIfTooBig("id86");
    adjustFontSizeIfTooBig("id86");
    adjustLineHeightIfTooBig("id87");
    adjustFontSizeIfTooBig("id87");
    adjustLineHeightIfTooBig("id88");
    adjustFontSizeIfTooBig("id88");
    adjustLineHeightIfTooBig("id89");
    adjustFontSizeIfTooBig("id89");
    adjustLineHeightIfTooBig("id90");
    adjustFontSizeIfTooBig("id90");
    adjustLineHeightIfTooBig("id91");
    adjustFontSizeIfTooBig("id91");
    adjustLineHeightIfTooBig("id94");
    adjustFontSizeIfTooBig("id94");
    adjustLineHeightIfTooBig("id95");
    adjustFontSizeIfTooBig("id95");
    adjustLineHeightIfTooBig("id96");
    adjustFontSizeIfTooBig("id96");
    adjustLineHeightIfTooBig("id97");
    adjustFontSizeIfTooBig("id97");
    adjustLineHeightIfTooBig("id100");
    adjustFontSizeIfTooBig("id100");
    adjustLineHeightIfTooBig("id101");
    adjustFontSizeIfTooBig("id101");
    adjustLineHeightIfTooBig("id102");
    adjustFontSizeIfTooBig("id102");
    adjustLineHeightIfTooBig("id103");
    adjustFontSizeIfTooBig("id103");
    adjustLineHeightIfTooBig("id106");
    adjustFontSizeIfTooBig("id106");
    adjustLineHeightIfTooBig("id107");
    adjustFontSizeIfTooBig("id107");
    adjustLineHeightIfTooBig("id108");
    adjustFontSizeIfTooBig("id108");
    adjustLineHeightIfTooBig("id109");
    adjustFontSizeIfTooBig("id109");
    adjustLineHeightIfTooBig("id112");
    adjustFontSizeIfTooBig("id112");
    adjustLineHeightIfTooBig("id113");
    adjustFontSizeIfTooBig("id113");
    adjustLineHeightIfTooBig("id114");
    adjustFontSizeIfTooBig("id114");
    adjustLineHeightIfTooBig("id115");
    adjustFontSizeIfTooBig("id115");
    adjustLineHeightIfTooBig("id118");
    adjustFontSizeIfTooBig("id118");
    adjustLineHeightIfTooBig("id119");
    adjustFontSizeIfTooBig("id119");
    adjustLineHeightIfTooBig("id120");
    adjustFontSizeIfTooBig("id120");
    adjustLineHeightIfTooBig("id121");
    adjustFontSizeIfTooBig("id121");
    adjustLineHeightIfTooBig("id124");
    adjustFontSizeIfTooBig("id124");
    adjustLineHeightIfTooBig("id125");
    adjustFontSizeIfTooBig("id125");
    adjustLineHeightIfTooBig("id126");
    adjustFontSizeIfTooBig("id126");
    adjustLineHeightIfTooBig("id127");
    adjustFontSizeIfTooBig("id127");
    adjustLineHeightIfTooBig("id130");
    adjustFontSizeIfTooBig("id130");
    adjustLineHeightIfTooBig("id131");
    adjustFontSizeIfTooBig("id131");
    adjustLineHeightIfTooBig("id132");
    adjustFontSizeIfTooBig("id132");
    adjustLineHeightIfTooBig("id133");
    adjustFontSizeIfTooBig("id133");
    adjustLineHeightIfTooBig("id136");
    adjustFontSizeIfTooBig("id136");
    adjustLineHeightIfTooBig("id137");
    adjustFontSizeIfTooBig("id137");
    adjustLineHeightIfTooBig("id138");
    adjustFontSizeIfTooBig("id138");
    adjustLineHeightIfTooBig("id139");
    adjustFontSizeIfTooBig("id139");
    fixupIEPNG("id2", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id4", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id6", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id8", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id11", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id13", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id16", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id17", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_9_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_9", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id22", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id23", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_12_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_12", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id28", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id29", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_15_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_15", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id34", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id35", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_18_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_18", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id40", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id41", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_21_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_21", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id46", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id47", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_24_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_24", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id52", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id53", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_27_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_27", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id58", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id59", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_30_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_30", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id64", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id65", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_33_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_33", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id71", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id72", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_36_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_36", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id77", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id78", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_39_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_39", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id83", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id84", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_42_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_42", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id92", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id93", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_45_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_45", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id98", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id99", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_48_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_48", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id104", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id105", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_51_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_51", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id110", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id111", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_54_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_54", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id116", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id117", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_57_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_57", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id122", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id123", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_60_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_60", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id128", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id129", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_63_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_63", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id134", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("id135", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_66_link_0", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    fixupIEPNG("shapeimage_66", "A4CB41BB-C30C-46DB-9ACC-31FD7EB15CC1_files/transparent.gif");
    return true;
}

function IMpreload(path, name, areaIndex)
{
    var rolloverName = name+'_rollover_'+areaIndex;
    var rolloverPath = path+'/'+rolloverName+'.png';
    self[rolloverName] = new Image();
    self[rolloverName].src = rolloverPath;

    var linkName = name+'_link_'+areaIndex;
    var linkPath = path+'/'+linkName+'.png';
    self[linkName] = new Image();
    self[linkName].src = linkPath;
    return true;
}

function IMmouseover(name, areaIndex)
{
    var rolloverName = name+'_rollover_'+areaIndex;
    var linkName = name+'_link_'+areaIndex;
    var img  = document.getElementById(linkName);
    if (img)
    {
        img.src = self[rolloverName].src;
    }
    return true;
}

function IMmouseout(name, areaIndex)
{
    var linkName = name+'_link_'+areaIndex;
    var img  = document.getElementById(linkName);
    if (img)
    {
        img.src = self[linkName].src;
    }
    return true;
}

var windowsInternetExplorer = false;
var browserVersion = 0;
function detectBrowser()
{
    windowsInternetExplorer = false;
    var appVersion = navigator.appVersion;
    if ((appVersion.indexOf("MSIE") != -1) &&
        (appVersion.indexOf("Macintosh") == -1))
    {
        var temp = appVersion.split("MSIE");
        browserVersion = parseFloat(temp[1]);
        windowsInternetExplorer = true;
    }
}

var inImgPropertyChanged = false;
function imgPropertyChanged()
{
    if ((window.event.propertyName == "src") && (! inImgPropertyChanged))
    {
        inImgPropertyChanged = true;
        var el = window.event.srcElement;
        if (el.src != smallTransparentGif)
        {
            el.filters.item(0).src = el.src;
            el.src = smallTransparentGif;
        }
        inImgPropertyChanged = false;
    }
}


