// 网络收藏插件
document.write("<div class='big23'>");
document.write("	<DIV class='shou' onclick=copyToClipBoard()><img src='/img/so/firend.gif'> 推荐给好友</DIV>");
document.write("	<DIV class='shou' onclick=PackAway() style='width:90px'><img src='/img/so/local.gif'> 收藏到本地</DIV>");
document.write("	<DIV class='shou' onclick=\"javascript:window.open('http://cang.baidu.com/do/add?it='+encodeURIComponent(document.title.substring(0,76))+'&amp;iu='+encodeURIComponent(location.href)+'&amp;fr=ien#nw=1','_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes'); void 0\" style='width:90px'><img src='/img/so/baidu.gif'> 收藏到百度</DIV>");
document.write("	<DIV class='shouT' onclick=\"javascript:window.open('http://shuqian.qq.com/post?from=3&amp;title='+encodeURIComponent(document.title)+'&amp;uri='+encodeURIComponent(document.location.href)+'&amp;jumpback=2&amp;noui=1','favit','width=700,height=480,left=50,top=50,toolbar=no,menubar=no,location=no,scrollbars=yes,status=yes,resizable=yes');void(0)\" style='width:100px'><img src='/img/so/qq.gif'> 收藏到QQ书签</DIV>");
document.write("	<DIV class='shouT' onclick=\"javascript:window.open('http://www.google.com/bookmarks/mark?op=add&bkmk='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title),'_blank','scrollbars=no,width=680,height=450,left=75,top=20,status=no,resizable=yes')\" style='width:95px'><img src='/img/so/google.gif'> Google书签</DIV>");
document.write("</div>");


function copyToClipBoard(){	
	var clipBoardContent=''; 
	clipBoardContent += window.document.title;
	clipBoardContent += '\r\n';
	clipBoardContent += document.location;
	window.clipboardData.setData("Text",clipBoardContent);
	alert("复制成功，请粘贴到你的QQ/MSN上推荐给你的好友！");
}
function PackAway(){
	window.external.addFavorite(document.location, window.document.title);
}
