コピー&ペーストを抑制する

<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
//<![CDATA[
	$(document).ready(function(){
		$('input').bind('copy', function(){return false;});
		$('input').bind('paste', function(){return false;});
		$('input#tel').unbind('copy');
		$('input#tel').unbind('paste');
	})
//]]>
</script>
<style type="text/css">
</style>
</head>
<body>
<div id="container">
	<h3>メールアドレス</h3>
	<input id="mail" type="text" maxlength="60" />
	<h3>メールアドレス確認</h3>
	<input id="mailconfirm" type="text" maxlength="60" />
	<h3>電話番号</h3>
	<input id="tel" type="text" maxlength="60" />
	<br />
	<input id="myButton" type="submit" value="送信" />
</div>
</body>
</html>