
<!-- 

//link hiding
window.status=status
setInterval("window.status='www.eric.org.tw'",1);

// --> 

//<!-- 
//prevent user to click mouse's right button
document.onmousedown=click; 
document.onkeydown=click; 
function click() { 
  if (event.button==2) { 
    window.external.addFavorite('http://www.eric.org.tw','www.eric.org.tw') 
  } 
} 
// --> 


//<!-- 
//prevent user use "ctrl+c"
function DisableCKey() {
	//if(event.keyCode==17)
	//document.selection.clear();
}
//document.onkeydown=DisableCKey;
// --> 

