var display_url=0
function showmenuie5(){
 var rightedge=document.body.clientWidth-event.clientX
 var bottomedge=document.body.clientHeight-event.clientY
 if (rightedge<ie5menu.offsetWidth)
  ie5menu.style.left=document.body.scrollLeft+event.clientX-ie5menu.offsetWidth
 else
  ie5menu.style.left=document.body.scrollLeft+event.clientX
  if (bottomedge<ie5menu.offsetHeight)
   ie5menu.style.top=document.body.scrollTop+event.clientY-ie5menu.offsetHeight
  else
   ie5menu.style.top=document.body.scrollTop+event.clientY
 ie5menu.style.visibility="visible"
 return false
}
function hidemenuie5(){
 ie5menu.style.visibility="hidden"
}
function highlightie5(){
 if (event.srcElement.className=="menuitems"){
  event.srcElement.style.backgroundColor="highlight"
  event.srcElement.style.backgroundColor="#2873a2"
  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"){
  if (event.srcElement.getAttribute("target")!=null)
   window.open(event.srcElement.url,event.srcElement.getAttribute("target"))
  else
   window.location=event.srcElement.url
 }
}

document.write('<!--[if IE]>');
document.write('<div id="ie5menu" class="skin0" onMouseover="highlightie5()" onMouseout="lowlightie5()" onClick="jumptoie5()">');
document.write('<div class="menuitems" url="#">Sorry, Right-click has been disabled for security. Have a nice day! Thanks.</div>');
document.write('</div>');
document.write('<![endif]-->');

if (document.all&&window.print&&parent==self){
 ie5menu.className="skin0"
 document.oncontextmenu=showmenuie5
 document.body.onclick=hidemenuie5
}
