onmouseup = function()
{
	var copy = window.getSelection();
	if(copy != "")
	{
		copyToClipboard(copy);
	}
}

function copyToClipboard(text2copy) 
{
	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="http://itblob.havrlant.net/files/clipboard.swf" FlashVars="clipboard='+encodeURIComponent(text2copy)+'" width="1" height="1" type="application/x-shockwave-flash"></embed>';
		document.getElementById(flashcopier).innerHTML = divinfo;
	}
}

//javascript:x99=window.open('http://www.jdem.cz/bm2?url='+encodeURIComponent(document.location.href),'Jdem.cz','modal=1,status=0,scrollbars=1,toolbar=0,resizable=1,height=550,width=785,left='+(screen.width-785)/2+',top='+(screen.height-550)/2);setTimeout('x99.focus()',1000);void 0;
