/* document.write("
"); document.write(""); document.write("
"); var isDOM = (document.getElementById ? true : false); var isIE4 = ((document.all && !isDOM) ? true : false); var isNS4 = (document.layers ? true : false); var isNS = navigator.appName == "Netscape"; function getRef(id) { if (isDOM) return document.getElementById(id); if (isIE4) return document.all[id]; if (isNS4) return document.layers[id]; } function getSty(id) { x = getRef(id); return (isNS4 ? getRef(id) : getRef(id).style); } var scrollerHeight = 88; var puaseBetweenImages = 3000; var imageIdx = 0; function moveRightEdge() { var yMenuFrom, yMenuTo, yOffset,xMenuFrom, xMenuTo, xOffset, timeoutNextCheck; if (document.body.clientHeight) yTop=document.body.clientHeight-(document.body.clientHeight-110); else yTop=110; if (document.body.clientWidth) xleft=((document.body.clientWidth-933)/2+935); else xleft=0; if (isNS4) { yMenuFrom = divMenu.top; xMenuFrom = divMenu.left; yMenuTo = windows.pageYOffset + yTop; xMenuTo = windows.pageXOffset + xleft; } else if (isDOM) { yMenuFrom = parseInt (divMenu.style.top, 10); xMenuFrom = parseInt (divMenu.style.left, 10); yMenuTo = (isNS ? window.pageYOffset : document.body.scrollTop) + yTop; xMenuTo = (isNS ? window.pageXOffset : document.body.scrollLeft) + xleft; } timeoutNextCheck = 500; if (yMenuFrom != yMenuTo) { yOffset = Math.ceil(Math.abs(yMenuTo - yMenuFrom) / 20); if (yMenuTo < yMenuFrom) yOffset = -yOffset; if (isNS4) divMenu.top += yOffset; else if (isDOM) divMenu.style.top = parseInt (divMenu.style.top, 10) + yOffset; timeoutNextCheck = 10; } if (xMenuFrom != xMenuTo && Math.abs(xMenuFrom - xMenuTo)>2) { xOffset = Math.ceil(Math.abs(xMenuTo - xMenuFrom) / 20); if (xMenuTo < xMenuFrom) xOffset = -xOffset; if (isNS4) divMenu.left += xOffset; else if (isDOM) divMenu.style.left = parseInt (divMenu.style.left, 10) + xOffset; timeoutNextCheck = 10; } setTimeout ("moveRightEdge()", timeoutNextCheck); } if (isNS4) { var divMenu = document["divMenu"]; divMenu.top = top.pageYOffset; divMenu.left = top.pageXOffset+((document.body.clientWidth-933)/2+935); divMenu.visibility = "visible"; moveRightEdge(); } else if (isDOM) { var divMenu = getRef('divMenu'); divMenu.style.top = (isNS ? window.pageYOffset : document.body.scrollTop); divMenu.style.left = (isNS ? window.pageXOffset : document.body.scrollLeft)+((document.body.clientWidth-933)/2+935); divMenu.style.visibility = "visible"; moveRightEdge(); } */