function HighlightAll(theField) { 
var tempval=document.getElementById(theField); 
tempval.focus();
tempval.select();
therange=tempval.createTextRange();
therange.execCommand("Copy");
alert("推荐链接已经复制");
}

function HighlightAll1(theField) { 
var tempval=document.getElementById(theField); 
tempval.focus();
tempval.select();
therange=tempval.createTextRange();
therange.execCommand("Copy");
alert("链接已复制");
} 

function swf(flashURL,flashWIDTH,flashHEIGHT) //去除flash虚框
{
document.writeln ('<OBJECT id="flashMain" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" WIDTH='+flashWIDTH+' HEIGHT='+flashHEIGHT+'>'); 
document.writeln ('<PARAM NAME=movie VALUE="'+flashURL+'">'); 
//document.writeln ('<PARAM NAME=wmode VALUE=transparent>'); 
document.writeln ('<PARAM NAME=loop VALUE=true>'); 
document.writeln ('<PARAM NAME=quality VALUE=high>'); 
document.writeln ('</OBJECT>'); 
}
