웹마스터 팁

펌방지하는 소스입니다. 펌방지해제하는 프로그램들도 안 먹힘니다.
제가 봐도 대박ㅋㅋ

<html>
<head>
<title>펌 방지</title>
<script>
 function dragno()
 {
       return false;
 }
 function defencespell()
 {
       eval('document.'+event.propertyName+'=dragno');
 }
</script>
</head>
<body onpropertychange="defencespell()" oncontextmenu="return false;"
ondragstart="return false;" onselectstart="return false;">
<p>펌방지해제해보세요.</p>
</body>
</html>