
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 result = id ? 'msg_' + id : 'urlcopy',
    id = id || 'url';
	document.getElementById('copy').innerHTML = "";
	var swf = "<embed src='/images/common/setClipboard.swf' FlashVars='code="+encodeURIComponent(document.urlcopy[id].value)+"' width='0' height='0' type='application/x-shockwave-flash'></embed>";
	document.getElementById('copy').innerHTML = swf;
	document.urlcopy[id].select();

    if (typeof urchinTracker !== 'undefined') {
        urchinTracker("/Analytics/onclick/urlcopy/");
    }
    
    // show message
    $('#copy_msg').remove();
    if (!$('#copy_msg').html()) {
        if (id == 'url') {
           var html = "<div id='copy_msg'><p>URL をクリップポードにコピーしました。</p></div>";
        } else {
           var html = "<div id='copy_msg'><p>ソースコードをクリップポードにコピーしました。</p></div>";
        }
        $('#'+result).append(html);
    }
    $('#copy_msg').hide();
    $('#copy_msg').slideDown(300);
}

$(function(){
    $('#clip_1').click(function(){setClipboard('url_1');});
    $('#clip_2').click(function(){setClipboard('url_2');});
    $('#clip_3').click(function(){setClipboard('url_3');});
});