
   var display_url=0
   function showmenuie5(){
   var rightedge=document.body.clientWidth-event.clientX
   var bottomedge=document.body.clientHeight-event.clientY
   return false
   }
      function highlightie5(){
   if (event.srcElement.className=="menuitems"){
   event.srcElement.style.backgroundColor="highlight"
   event.srcElement.style.color="white"
   if (display_url==1)
   window.status=event.srcElement.url
   }
   }
   function lowlightie5(){
   if (event.srcElement.className=="menuitems"){
   event.srcElement.style.backgroundColor=""
   event.srcElement.style.color="black"
   window.status=''
   }
   }
   function jumptoie5(){
   if (event.srcElement.className=="menuitems")
   window.location=event.srcElement.url
   }


   document.oncontextmenu=showmenuie5

