// Select and Auto Copy
// http://javascript.internet.com/forms/select-and-auto-copy.html

function copyit(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
therange=tempval.createTextRange()
therange.execCommand("Copy")
}

