function counter( setLocation, setTarget ){
return;
	var date = new Date();
	var y = date.getYear() + 1900;
	var m = date.getMonth() + 1;
	if( m < 10 ) m = '0' + '' + m;
	var d = date.getDate();
	if( d < 10 ) d = '0' + '' + d;
	var day = y + '' + m + '' + d;
//	alert("reverselink/counter/" + day + ".txt");
	new Ajax.Request( setLocation + "reverselink/counter/" + day + ".txt", {
//	new Ajax.Request( setLocation + "reverselink/counter/" + setTarget + ".txt", {
		method: "get",
		onSuccess: function( httpObj ){
			$( "count_today" ).innerHTML = httpObj.responseText;
		},
		onFailure: function( httpObj ){
			$( "count_today" ).innerHTML = "error";
		}
	} );

	new Ajax.Request( setLocation + "reverselink/counter/total.txt", {
		method: "get",
		onSuccess: function( httpObj ){
			$( "count_total" ).innerHTML = httpObj.responseText;
		},
		onFailure: function( httpObj ){
			$( "count_total" ).innerHTML = "error";
		}
	} );
}
function tab( set ){

	var target = new Array( 'official', 'news', 'wiki', '_2ch', 'capture' );
	for( i in target ){
		if( document.getElementById( target[i] ) == null ) continue;
		if( document.getElementById( 'title_tab_' + target[i] ) == undefined ) continue;
		document.getElementById( 'title_tab_' + target[i] ).style.borderBottomColor = 'skyblue';
		document.getElementById( target[i] ).style.display = 'none';
	}
	document.getElementById( set ).style.display = 'block';
	document.getElementById( 'title_tab_' + set ).style.borderBottomColor = 'cornflowerblue';

}
