function convert() {
//	document.charset='euc-jp';
	return true;
}

document.onkeypress = convert;

function search_back(){
	if(document.charset=="euc-jp"){
		document.charset='utf-8';
		location.reload();
	}
}

