<!--
//选择文本框的内容是否需要自动复制到剪切板上
//Applies only to IE 4+
//0=no, 1=yes
var copytoclip=1

function HighlightAll(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
if (document.all&&copytoclip==1){
therange=tempval.createTextRange()
therange.execCommand("Copy")
window.alert('已经复制好了,请直接按Ctrl+V粘贴')
setTimeout("window.status=''",1800)
}
}
//-->