<!--
//No right click
if (window.Event) 
  document.captureEvents(Event.MOUSEUP); 
 
function nocontextmenu() 
{
 event.cancelBubble = true
 event.returnValue = false;
 
 return false;
}
 
function norightclick(e) 
{
 if (window.Event) 
 {
  if (e.which == 2 || e.which == 3)
   return false;
 }
 else
  if (event.button == 2 || event.button == 3)
  {
   event.cancelBubble = true
   event.returnValue = false;
   return false;
  }
 
}
 
document.oncontextmenu = nocontextmenu;  // for IE5+
document.onmousedown = norightclick;  // for all others

//Show Hide DIV
function hide(code)
{
  document.all.xian.style.display='none';
  document.all.weinan.style.display='none';
  document.all.xianyang.style.display='none';
  document.all.baoji.style.display='none';
  document.all.hanzhong.style.display='none';
  document.all.yulin.style.display='none';
  document.all.yanan.style.display='none';
  document.all.shangzhou.style.display='none';
  document.all.ankang.style.display='none';
  document.all.tongchuan.style.display='none';
  if (code==xian)
  {
    document.all.xian.style.display='';
  }
  if (code==weinan)
  {
    document.all.weinan.style.display='';
  }
  if (code==xianyang)
  {
    document.all.xianyang.style.display='';
  }
  if (code==baoji)
  {
    document.all.baoji.style.display='';
  }
  if (code==hanzhong)
  {
    document.all.hanzhong.style.display='';
  }
  if (code==yulin)
  {
    document.all.yulin.style.display='';
  }
  if (code==yanan)
  {
    document.all.yanan.style.display='';
  }
  if (code==shangzhou)
  {
    document.all.shangzhou.style.display='';
  }
  if (code==ankang)
  {
    document.all.ankang.style.display='';
  }
  if (code==tongchuan)
  {
    document.all.tongchuan.style.display='';
  }
}
//-->

