そこで二重クリック防止のjavascriptをメモ
html
<button type="button" id="b" onclick = "noclick();">
<font size="1">ダブクリすんな</font>
</button>
javascript
function noclick(){
document.getElementById("b").disabled = true;
setTimeout('ダブクリさせない!', 0);
}
IE7以下では動かんのであしからず
あと、メモ
http://knt45.hatenablog.com/entry/20120821/1345512989