<!--

// Search Form JavaScript Document

function dmcnAll() {
	var theForm = document.search_form;

	if(theForm.dm_cn_all.checked) {
	theForm.dm_cn.checked = 1;
	theForm.dm_cn_com.checked = 1;
	theForm.dm_cn_net.checked = 1;
	theForm.dm_cn_org.checked = 1;
} else {
	theForm.dm_cn.checked = 0;
	theForm.dm_cn_com.checked = 0;
	theForm.dm_cn_net.checked = 0;
	theForm.dm_cn_org.checked = 0;
	}
}

function dmkr2All() {
	var theForm = document.search_form;

	if(theForm.dm_kr2_all.checked) {
	theForm.dm_kr_kr.checked = 1;
	theForm.dm_kr_com.checked = 1;
	} else {
	theForm.dm_kr_kr.checked = 0;
	theForm.dm_kr_com.checked = 0;
	}
}

function dmcomAll() {
	var theForm = document.search_form;

	if(theForm.dm_com_all.checked) {
	theForm.dm_com_com.checked = 1;
	theForm.dm_com_net.checked = 1;
	theForm.dm_com_org.checked = 1;
	theForm.dm_com_us.checked = 1;
	} else {
	theForm.dm_com_com.checked = 0;
	theForm.dm_com_net.checked = 0;
	theForm.dm_com_org.checked = 0;
	theForm.dm_com_us.checked = 0;
	}
}

function dminfoAll() {
	var theForm = document.search_form;

	if(theForm.dm_info_all.checked) {
	theForm.dm_info_info.checked = 1;
	theForm.dm_info_biz.checked = 1;
	theForm.dm_info_us.checked = 1;
	} else {
	theForm.dm_info_info.checked = 0;
	theForm.dm_info_biz.checked = 0;
	theForm.dm_info_us.checked = 0;
	}
}

function dmkrAll() {
	var theForm = document.search_form;

	if(theForm.dm_kr_all.checked) {
	theForm.dm_kr_cokr.checked = 1;
	theForm.dm_kr_pekr.checked = 1;
	theForm.dm_kr_orkr.checked = 1;
	theForm.dm_kr_nekr.checked = 1;
	//theForm.check_kr_opt.checked = 1;
	//theForm.dm_kr_opt.disabled = 0;
	} else {
	theForm.dm_kr_cokr.checked = 0;
	theForm.dm_kr_pekr.checked = 0;
	theForm.dm_kr_orkr.checked = 0;
	theForm.dm_kr_nekr.checked = 0;
	//theForm.check_kr_opt.checked = 0;
	//theForm.dm_kr_opt.disabled = 1;
	}
}

function dmukAll() {
	var theForm = document.search_form;

	if(theForm.dm_uk_all.checked) {
	theForm.dm_uk_co.checked = 1;
	theForm.dm_uk_me.checked = 1;
	theForm.dm_uk_org.checked = 1;
	} else {
	theForm.dm_uk_co.checked = 0;
	theForm.dm_uk_me.checked = 0;
	theForm.dm_uk_org.checked = 0;
	}
}

function dmjpAll() {
	var theForm = document.search_form;

	if(theForm.dm_jp_all.checked) {
	  theForm.dm_jp.checked = 1;
	} else {
	  theForm.dm_jp.checked = 0;
	}
}

function Chk_dmkr2_All() {
	var theForm = document.search_form;
	
	if(theForm.dm_kr_kr.checked==0||theForm.dm_kr_com.checked==0) {
	theForm.dm_kr2_all.checked = 0;
	}
}

function Chk_dmcom_All() {
	var theForm = document.search_form;
	
	if(theForm.dm_com_com.checked==0||theForm.dm_com_net.checked==0||theForm.dm_com_org.checked==0||theForm.dm_com_us.checked==0) {
		theForm.dm_com_all.checked = 0;
	}else if(theForm.dm_com_com.checked==1&&theForm.dm_com_net.checked==1&&theForm.dm_com_org.checked==1&&theForm.dm_com_us.checked==1){
		theForm.dm_com_all.checked = 1;
	}
}

function Chk_dminfo_All() {
	var theForm = document.search_form;
	
	if(theForm.dm_info_info.checked==0||theForm.dm_info_biz.checked==0) {
		theForm.dm_info_all.checked = 0;
	}else if(theForm.dm_info_info.checked==1&&theForm.dm_info_biz.checked==1){
		theForm.dm_info_all.checked = 1;
	}
}

function Chk_dmkr_All() {
	var theForm = document.search_form;
	
	if(theForm.dm_kr_cokr.checked==0||theForm.dm_kr_pekr.checked==0||theForm.dm_kr_orkr.checked==0||theForm.dm_kr_nekr.checked==0) {
		theForm.dm_kr_all.checked = 0;
	}else if(theForm.dm_kr_cokr.checked==1&&theForm.dm_kr_pekr.checked==1&&theForm.dm_kr_orkr.checked==1&&theForm.dm_kr_nekr.checked==1) {
		theForm.dm_kr_all.checked = 1;
	}

}

function Chk_dmcn_All() {
	var theForm = document.search_form;
	
	if(theForm.dm_cn.checked==0||theForm.dm_cn_com.checked==0||theForm.dm_cn_net.checked==0||theForm.dm_cn_org.checked==0) {
	theForm.dm_cn_all.checked = 0;
	}
	else theForm.dm_cn_all.checked=1;
}


function Chk_dmjp_All() {

	var theForm = document.search_form;

	if(theForm.dm_jp.checked==0) {
	  theForm.dm_jp_all.checked = 0;
	}
	else theForm.dm_jp_all.checked=1;
}

function Chk_dmuk_All() {
	var theForm = document.search_form;

	if(theForm.dm_uk_co.checked==0||theForm.dm_uk_me.checked==0||theForm.dm_uk_org.checked==0) {
	theForm.dm_uk_all.checked = 0;
	}
  else theForm.dm_uk_all.checked=1;
}

function dis_opt() {
	var theForm = document.search_form;

	if(theForm.check_kr_opt.checked) {
	theForm.dm_kr_opt.disabled = 0;
	} else {
	theForm.dm_kr_opt.disabled = 1;
	}
}
//-->