A little shortcut page that I use. Clicking the boxes automatically copies to the clipboard.
Code:
<HTML>
<body>
<script>
function doCopy(what){
Copied = what.createTextRange();
Copied.execCommand("Copy");
}
</script>
<form name-"headform">
<table align=center border=1 >
<tr>
<td align=left colspan=2>
<TEXTAREA class=boxtext name=title rows=2 wrap=virtual cols=50 onclick="doCopy(this)">Put title here</textarea>
</td>
</tr>
<tr>
<td align=left colspan=2><TEXTAREA class=boxtext name=desc rows=3 wrap=virtual cols=50 onclick="doCopy(this)">Put Description here</TEXTAREA>
</td>
</tr>
<tr>
<td align=left>
<input type=text name="nick" value="myNick" onclick="doCopy(this)">
</td>
<td align=left>
<input type=text name="email" value="webmaster@mydomain.com" onclick="doCopy(this)">
</td>
</tr>
</table>
</form>
</body>
</HTML>