//#━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//#
//# ★ クリックカウント用関数
//#
//#━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
function click_count( cid , year, month , day ){

	if( !cid || !year || !month || !day )return;
	

	//#==================================================================
	//# ■ AJAX実行
	//#━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	para = "cid=" + cid + "&y=" + year + "&m=" + month + "&d=" + day ;

	var url = "/aj.html/cc";
	var jsonRequest = new Ajax.Request(
		url,
   {
		method: 'post',   	
	    postBody: para,  
		onSuccess: function(a,json){
			
		},
		onFailure: function(){

		}
	});
}




//#━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//#
//# ★ リンクページ　選択
//#
//#━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	

function copyit(theField) {
	var tempval=eval("document."+theField);
	tempval.focus();
	tempval.select();
	if(navigator){
		if(navigator.userAgent){
			if(navigator.userAgent.indexOf("MSIE") == -1){
				return false;
			}
		}
	}
	therange=tempval.createTextRange();
	therange.execCommand("Copy");
} 

