var ua        = navigator.userAgent.toLowerCase(); 
var is_pc_ie  = ( (ua.indexOf('msie') != -1 ) && ( ua.indexOf('win') != -1 ) && ( ua.indexOf('opera') == -1 ) && ( ua.indexOf('webtv') == -1 ) );

function setClipboard(id){
	var ta = document.getElementById(id);
	if (is_pc_ie) {
		copytext = ta.createTextRange();
		copytext.execCommand("Copy");
	}else{
		document.getElementById('copy').innerHTML = "";
		var swf = "<embed src='/scripts/libs/setClipboard.swf' FlashVars='code="+encodeURIComponent(ta.value)+"' width='0' height='0' type='application/x-shockwave-flash'></embed>";
		document.getElementById('copy').innerHTML = swf;
	}
	ta.select();
	ta.focus();
}

