// クリップボードへのコピーボタン表示
function clicpBordCopyScript(id) {
	if (navigator.userAgent 
		&& navigator.userAgent.indexOf("MSIE") >= 0 
		&& navigator.userAgent.indexOf("Windows") >= 0){
		document.write("<input type=\"button\" name=\"cb_copy\" value=\"クリップボードにコピー\" onclick=\"clipboardCopy('" + id + "')\">");
	}
}

// クリップボードへのコピー
function clipboardCopy(id) {
	document.getElementById(id).select();
	var elementValue = document.getElementById(id).value;
	if (navigator.userAgent 
		&& navigator.userAgent.indexOf("MSIE")>=0 
		&& navigator.userAgent.indexOf("Windows")>=0){
		clipboardData.setData("Text", elementValue);
		alert("ソースコードをクリップボードにコピーしました。");
	}
}

// 非ログイン状態時のリダイレクト警告
function nonLoginRedirect(displayMode) {
//	document.getElementById("nonlogin_jump").style.display = displayMode;
	if (displayMode == "block") {
		$("#nonlogin_jump").fadeIn("slow");
	} else {
		$("#nonlogin_jump").fadeOut("slow");
	}
}

