function encode_utf8( s ){
return unescape( encodeURIComponent( s ) );
}
function decode_utf8( s ){
return decodeURIComponent( escape( s ) );
}

function copy(text2copy) {
  if (window.clipboardData) {
    window.clipboardData.setData("Text",text2copy);
  } else {
	text2copy = encode_utf8(text2copy);
    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="library/js/copyandmessage/_clipboard.swf" FlashVars="clipboard='+escape(text2copy)+'" width="0" height="0" type="application/x-shockwave-flash"></embed>';
	//alert(text2copy);
    document.getElementById(flashcopier).innerHTML = divinfo;
  }
}

//window.onload = kickStart;




function kickStart(id) {
	if(document.all){
		var text2copy = document.getElementById(id).innerText;
	}else{
		var text2copy = document.getElementById(id).textContent;
	}

	copy(text2copy);
	ShowStatusMessage(0,"تك افلسخ");
}
