//
//
//

// 絞込みを続けるボタン
function js_vote_clap( id, vid ) {

	var url = 'ajax_vote_clap_entry.php';
	var request = new Object();

	request.method = 'get';
	request.parameters = 'vid=' + vid;
	request.onSuccess = function( xmlhttp ) {
		if( xmlhttp.responseText != 'true' ) {
			alert( xmlhttp.responseText );
		}
	}

	new Ajax.Request( url, request );

	var url = 'ajax_vote_clap.php?vid=' + vid;
	var res = 'ajax_vote_clap' + id;

	new Ajax.Updater( $( res ), url );

}

