<!-- //ÓÒ¼ü½ûÖ¹
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 
//-->

<!-- //´ò¿ªpop´°¿Ú
function popwin(url,Wwidth,Wheight)
{
  window.open(url,"Hua","width=518, height="+(screen.height-120)+", top=10, left="+(screen.width-520)/2+", scrollbars=1")
}

function popwin2(url,Wwidth,Wheight)
{
  window.open(url,"Hua","width=794, height="+(screen.height-55)+", top=0, left="+(screen.width-800)/2+", scrollbars=1")
}
function win(url,Wwidth,Wheight)
{
  window.open(url,"Hua","width=340, height=360, top=50, left="+(screen.width-800)/1+"")
}
function book(url,Wwidth,Wheight)
{
  window.open(url,"Hua","width=776, height=600, top=60, left="+(screen.width-900)/1+"")
}
//-->