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