<!--
                // browser test:
        agent = navigator.userAgent
        browserVer = 2
        if( agent.indexOf("a/3",6) != -1 )
                {
                        browserVer = 1
                }
        else
        {
                if( agent.indexOf("a/4",6) != -1 )
                {
                        browserVer = 1
                }
        }

        // preload universal images:
        if (browserVer == 1)
        {

                pic1  = new Image();                pic1.src  = "images/index_08.gif";
                pic1h = new Image();                pic1h.src = "images/index-on_08.gif";
                pic2  = new Image();                pic2.src  = "images/index_10.gif";
                pic2h = new Image();                pic2h.src = "images/index-on_10.gif";
 		
                

        function ImgFunc( imgDocID, imgObjName )
        {
                if( browserVer == 1 )
                {
                        document.images[ imgDocID ].src = eval(imgObjName + ".src")
                }
        }
		}
// -->
