function getCheckRule(){
	var mess="利用規約に同意しておりません。";
	if(document.form1.rule.checked){
		return true;
	} else {
		window.alert(mess);
		return false;
	}
}

function confirmwindow(nickname,loop_key,type){
	var sales_point=document.getElementById('sales_point'+loop_key).value;
	var sales_type_element=document.getElementById('sales_type'+loop_key);
	var sales_type=sales_type_element.options[sales_type_element.selectedIndex].text;
	var message=nickname+'さんに'+sales_point+'ポイントを'+sales_type+'で'+type+'します。';
	var flag=window.confirm(message);
	return flag;
}

function all_reset(){
	for(i=0;i<document.form1.length-1; i++){
		document.form1.elements[i].value='';
	}
}

function openwindow(url){
	window.open(url, '_blank', 'toolbar=yes,status=yes,menubar=yes,scrollbars=no,resizable=yes');
}
