function clip(id){

	var clipBoardContent=""; 
	try{

		clipBoardContent+="";

		clipBoardContent+=document.getElementById(id).value;

		window.clipboardData.setData("Text",clipBoardContent);

		alert("你已复制你的推广连接!");
		document.getElementById(id).select();

	}catch(e){
		alert("firefox游览，请手动复制！");
		document.getElementById(id).select();
	}

}