function copyLinkToClipboard(text2copy) {
	var text2copy = '[link='+window.location.href+']';
	text2copy = text2copy.replace("&", "&amp;");
	copyToClipboard(text2copy);
}

function copyToClipboard(text2copy) {
	text2copy.replace("&", "&amp;");
	if (window.clipboardData) {
		window.clipboardData.setData("Text",text2copy);
	} else {
		var flashcopier = 'flashcopier';
		if (!document.getElementById(flashcopier)) {
			var divholder = document.createElement('div');
			divholder.id = flashcopier;
			document.body.appendChild(divholder);
		}
		document.getElementById(flashcopier).innerHTML = '';
		var divinfo = '<embed src="clipboard.swf" FlashVars="clipboard='+escape(text2copy)+'" width="30" height="30" type="application/x-shockwave-flash"></embed>';
		document.getElementById(flashcopier).innerHTML = divinfo;
	}
}