<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<script>
function checkTimeInterval()
{
linkobject=document.getElementById("aa");
linkobject.disabled=true;
window.setTimeout("linkobject.disabled=false",60000); 
}
</script>
</head><body>
<a href="#" id="aa" onClick="checkTimeInterval();">you can click only once during one minute</a>
</body>
</html>