function commonSearchKey(){
	if(document.commonSearch.qt.value.length == 0){
		alert("Please enter keyword.");
		return false;
	} else {
		return true;
	}
}

function setvalue_E(id,sw){
	if (sw == 'on'){
		if (id.value.indexOf('Search Keyword') > -1) {
			id.value='';
		}
	} else {
		if (id.value == '') {
			id.value = '> Search Keyword';
		}
	}
}

function naviLink(obj_id,flg) {
	if (flg) {
		if(document.all){
			obj_id.parentElement.parentElement.style.backgroundColor = '#4c69af';
		}
		else if(document.styleSheets){
			obj_id.parentNode.parentNode.style.backgroundColor = '#4c69af';
		}
	}
	else {
		if(document.all){
			obj_id.parentElement.parentElement.style.backgroundColor = '#c6d8ea';
		}
		else if(document.styleSheets){
			obj_id.parentNode.parentNode.style.backgroundColor = '#c6d8ea';
		}
	}
}

