	defaultStatus=""

		var nextPage=""
		var prevElem=""
		var docObj= ""
		var styleObj= ""
		itemObj1= new Object
		itemObj2= new Object
		itemObj3= new Object
		var scrollPos="document.body.scrollTop"
		var right=false
		var down=false
		var infoFlash=true
		var infoHide=true
		var firstMove=true
		var marginMarker=150

		if (document.all) {
			docObj = "document.all."
			styleObj = ".style"
		}
		else {
			docObj = "document."
			styleObj = ""
			scrollPos="window.pageYOffset"
		}

		if (document.getElementById){
		docObj = "document.getElementById('"
		styleObj = "').style"
		}

		firstTime = true
		var yy=-600
		var xx=-100

		function fader(){
		if (navigator.appName.indexOf("Microsoft")>-1 && parseInt(navigator.appVersion)>=4){
			document.getElementById("menunfo").filters.alpha.opacity=opaciti
		}
		else{
			document.getElementById("menunfo").style.MozOpacity=opaciti/100
		}
		opaciti+=stepper
		if(opaciti>96){stepper=-2}
		if(opaciti<2){stepper=2}
		timer2=setTimeout("fader()",20)
		}

		function changePage(where){
			if(where==1){where="users.htm"}
			if(where==2){where="company.htm"}
			if(where==3){where="dataaccess.htm"}
			if(where==4){where="dataaccess.htm"}
			if(where==5){where="index.htm"}
			if(where==6){where="dataaccess.htm"}
			if(where==7){where="ordernew.htm"}
			if(where==8){where="advantages.htm"}
			location.href=where
		}

		function changeMenu(evt){
			if (firstMove){
				marginMarker=panelWidth*0.18
				itemObj3 = eval(docObj + "menunfo"+ styleObj)
				//flashInfo()
				firstMove=false
			}
			if(document.all){
				if(parseInt(evt.x)<marginMarker){
					moveDown()
				}
				else{
					moveLeft()
				}
			}
			else{
				if(parseInt(evt.pageX)<150){
					moveDown()
				}
				else{
					moveLeft()
				}
			}
		}

		function moveDown() {
			if(down==true){return}
			if (firstTime){
				itemObj1 = eval(docObj + "vline"+ styleObj)
				itemObj2 = eval(docObj + "links"+ styleObj)
				firstTime=false
			}
			itemObj1.top=yy+eval(scrollPos)
			if(yy>0){
			itemObj1.top=30+eval(scrollPos)
			xx=-100
			down=true
			moveRight()
			}
			else{
			yy+=20
			setTimeout("moveDown()",2)
			}
		}

		function moveUp() {
			if(down==false){return}
			itemObj1.top=yy+eval(scrollPos)
			if(yy<-600){
			itemObj1.top=-600
			down=false
			infoHide=true
			}
			else{
			yy-=40
			setTimeout("moveUp()",2)
			}
		}


		function moveRight() {
			if(right==true){return}
			itemObj2.top=85+eval(scrollPos)
			itemObj2.left=xx
			if(xx>20){
			right=true
			itemObj2.left=26
			itemObj3.visibility="visible"
			infoHide=false
			xx=26
			return
			}
			else{
			xx+=10
			setTimeout("moveRight()",10)
			}
		}

		function moveLeft() {
			return
			if(right==false){return}
			itemObj2.left=xx
			if(xx<-150){
			right=false
			moveUp()
			}
			else{
			xx-=10
			setTimeout("moveLeft()",10)
			}
		}

		function toindex(){
			location.href="index.htm"
		}

		function flashInfo(){
			if(infoFlash){
				itemObj3.visibility="visible"
				infoFlash=false
			}
			else{
				if(infoHide==true){		
					itemObj3.visibility="hidden"
					infoFlash=true
				}
			}
			setTimeout("flashInfo()",1000)
		}
