IMpreload('Home_files', 'shapeimage_4', '0'); IMpreload('Home_files', 'shapeimage_4', '1'); IMpreload('Home_files', 'shapeimage_4', '2'); IMpreload('Home_files', 'shapeimage_4', '3'); IMpreload('Home_files', 'shapeimage_4', '4'); 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; } } } } } } 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 NBmouseout(index) { var normal = document.getElementById("navbar_"+index+"_normal"); var rollover = document.getElementById("navbar_"+index+"_rollover"); if (normal && rollover) { normal.style.visibility = "visible"; rollover.style.visibility = "hidden"; } return true; } function NBmouseover(index) { var normal = document.getElementById("navbar_"+index+"_normal"); var rollover = document.getElementById("navbar_"+index+"_rollover"); if (normal && rollover) { normal.style.visibility = "hidden"; rollover.style.visibility = "visible"; } return true; } function fixupIEPNGBG(oBlock) { if (oBlock) { var currentBGImage = oBlock.currentStyle.backgroundImage; var currentBGRepeat = oBlock.currentStyle.backgroundRepeat; var urlStart = currentBGImage.indexOf('url('); var urlEnd = currentBGImage.indexOf(')', urlStart); var imageURL = currentBGImage.substring(urlStart + 4, urlEnd); if (imageURL.charAt(0) == '"') { imageURL = imageURL.substring(1); } if (imageURL.charAt(imageURL.length - 1) == '"') { imageURL = imageURL.substring(0, imageURL.length - 1); } var overrideRepeat = false; var filterStyle = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + imageURL + "', sizingMethod='crop');"; if (RegExp("/C[0-9A-F]{8}.png$").exec(imageURL) != null) { filterStyle = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + imageURL + "', sizingMethod='scale');"; overrideRepeat = true; } var backgroundImage = new Image(); backgroundImage.src = imageURL; var tileWidth = backgroundImage.width; var tileHeight = backgroundImage.height; var blockWidth = 0; var blockHeight = 0; if (oBlock.style.width) { blockWidth = parseInt(oBlock.style.width); } else { blockWidth = oBlock.offsetWidth; } if (oBlock.style.height) { blockHeight = parseInt(oBlock.style.height); } else { blockHeight = oBlock.offsetHeight; } if ((blockWidth == 0) || (blockHeight == 0)) { return; } var wholeRows = 1; var wholeCols = 1; var extraHeight = 0; var extraWidth = 0; if ((currentBGRepeat.indexOf("no-repeat") != -1) || ((tileWidth == 0) && (tileHeight == 0)) || overrideRepeat) { tileWidth = blockWidth; tileHeight = blockHeight; } else if ((currentBGRepeat.indexOf("repeat-x") != -1) || (tileHeight == 0)) { wholeCols = Math.floor(blockWidth / tileWidth); extraWidth = blockWidth - (tileWidth * wholeCols); tileHeight = blockHeight; } else if (currentBGRepeat.indexOf("repeat-y") != -1) { wholeRows = Math.floor(blockHeight / tileHeight); extraHeight = blockHeight - (tileHeight * wholeRows); tileWidth = blockWidth; } else { wholeCols = Math.floor(blockWidth / tileWidth); wholeRows = Math.floor(blockHeight / tileHeight); extraWidth = blockWidth - (tileWidth * wholeCols); extraHeight = blockHeight - (tileHeight * wholeRows); } var wrappedContent = document.createElement("div"); wrappedContent.style.position = "relative"; wrappedContent.style.zIndex = "1"; wrappedContent.style.left = "0px"; wrappedContent.style.top = "0px"; if (!isNaN(parseInt(oBlock.style.width))) { wrappedContent.style.width = "" + blockWidth + "px"; } if (!isNaN(parseInt(oBlock.style.height))) { wrappedContent.style.height = "" + blockHeight + "px"; } var pngBGFixIsWrappedContentEmpty = true; while (oBlock.hasChildNodes()) { if (oBlock.firstChild.nodeType == 3) { if (RegExp("^ *$").exec(oBlock.firstChild.data) == null) { pngBGFixIsWrappedContentEmpty = false; } } else { pngBGFixIsWrappedContentEmpty = false; } wrappedContent.appendChild(oBlock.firstChild); } if (pngBGFixIsWrappedContentEmpty) { wrappedContent.style.lineHeight = "0px"; } var newMarkup = ""; for (var currentRow = 0; currentRow < wholeRows; currentRow++) { for (currentCol = 0; currentCol < wholeCols; currentCol++) { newMarkup += "