function sendPworldData_main(hnd){
	org_chr=document.charset; 
	document.charset='Shift-JIS';
	
	var index = hnd.mname.selectedIndex;
	var value = hnd.mname.options[index].value;
	hnd.mname.options[index].value = EscapeSJIS(value);
	alert(GetEscapeCodeType(hnd.mname.options[index].value));
	
	var index = hnd.ken.selectedIndex;
	var value = hnd.ken.options[index].value;
	hnd.ken.options[index].value = EscapeSJIS(value);
	alert(GetEscapeCodeType(hnd.ken.options[index].value));

	var value = hnd.stitle.value;
	hnd.stitle.value = EscapeSJIS(value);
	alert(GetEscapeCodeType(hnd.stitle.value));
	
	hnd.submit();
	document.charset = org_chr;
	
}
