function login_exe(){
		document.forms[0].action="/okajobs/ssl/cgi-bin/talent/login.pl";
		document.forms[0].submit();
		return;
	}
function KeyPress(e){
	if(e.keyCode==13){
		login_exe();
		return false;
	}
	else{
		return true;
	}
}


function link_jump(url,kind_type){
	document.forms[0].kind_type.value = kind_type;
	document.forms[0].action = url;
	document.forms[0].submit();
	return;
}

function smt(){
	document.forms[0].occun.value = "";
	document.forms[0].indust.value = "";
	document.forms[0].tdfk.value = "";
	document.forms[0].work_time.value = "";
for(cnt = 0; cnt < document.forms[0].occun_check.length; cnt++){
if ( document.forms[0].occun_check[cnt].checked == true ){
if (document.forms[0].occun.value == ""){
document.forms[0].occun.value = document.forms[0].occun_check[cnt].value;
}else{
document.forms[0].occun.value = document.forms[0].occun.value + "," + document.forms[0].occun_check[cnt].value;
}
}
}

for(cnt = 0; cnt < document.forms[0].indust_check.length; cnt++){
if ( document.forms[0].indust_check[cnt].checked == true ){
if (document.forms[0].indust.value == ""){
document.forms[0].indust.value = document.forms[0].indust_check[cnt].value;
}else{
document.forms[0].indust.value = document.forms[0].indust.value + "," + document.forms[0].indust_check[cnt].value;
}
}
}

for(cnt = 0; cnt < document.forms[0].tdfk_check.length; cnt++){
if ( document.forms[0].tdfk_check[cnt].checked == true ){
if (document.forms[0].tdfk.value == ""){
document.forms[0].tdfk.value = document.forms[0].tdfk_check[cnt].value;
}else{
document.forms[0].tdfk.value = document.forms[0].tdfk.value + "," + document.forms[0].tdfk_check[cnt].value;
}
}
}


	document.forms[0].submit();
	return;
}
