//Copy
<!--
function highlight(elemnt) {
document.getElementById(elemnt).select();
document.getElementById(elemnt).focus();
if (document.all) {
textRange = document.getElementById(elemnt).createTextRange();
textRange.execCommand("RemoveFormat");
textRange.execCommand("Copy");
alert("ä´é·Ó¡ÒÃ Copy Code àÃÕÂºÃéÍÂáÅéÇ¤ÃÑº ¹Óä»µÔ´àÇ»¤Ø³ä´éàÅÂ");
}
}
// -->