  <!--
  function pageScroll() {
    if (window.navigator.appName!="Microsoft Internet Explorer"){
  		if (document.documentElement.scrollTop>170){
			  if (document.getElementById('divleft')!=null){
        document.getElementById('divleft').style.top = (document.documentElement.scrollTop - 170) + "px";
				} 
        document.getElementById('divright').style.top = (document.documentElement.scrollTop - 170) + "px";
			}	
    }
    else{
			if (navigator.userAgent.indexOf('7.0') > -1){
			  var scroll = document.documentElement.scrollTop
			}
			else{
			  var scroll = document.body.scrollTop
			}
  		if (scroll>170){
			  if (document.getElementById('divleft')!=null){
          document.getElementById('divleft').style.posTop = (scroll - 170)
				}	
  			document.getElementById('divright').style.posTop = (scroll - 170)
  		} 
    } 
  }
  window.onscroll = pageScroll
  //-->
