// 복사방지+드래그금지+마우스우클릭 금지
<script type="text/javascript">
var omitformtags=["input", "textarea", "select"]
omitformtags=omitformtags.join("|")
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
</script>
// 컨트롤키 사용금지
<script language="javascript">
var Focus_ = false;
function keypress()
{
if(Focus_ == true)
{
if(event.keyCode == 17) alert("컨트롤키쓰면 디진다...");
}
}
document.onkeydown=keypress;
</script>
<form name="FForm">
<input type="input" name="orion" onFocus="Focus_=true;">
</form>