// JavaScript Document

function changLang(lang){
	window.location = "../" + lang;
}

function changcolor(obj,color){
	obj.style.color = color;
}

function check_contact_info(){
	var result = true;
	var name = document.form1.txtname;
	var email = document.form1.txtemail;
	var content = document.form1.txtcontent;
	
	if (name.value == '') {
		alert('Tên không được trống!');
		name.focus();
		return false;
	}
	
	if (email.value == '') {
		alert('Email không được trống!');
		email.focus();
		return false;
	}
	
	if (content.value == '') {
		alert('Nội dung không được trống!');
		content.focus();
		return false;
	}
	
	return true;
}

function pressEnter(e,key){
	if (e.keyCode == 13){
		search_item(key);
	}
}

function search_item(key){
	if (key != ''){
		window.location = "search.php?key=" + key;
	} else {
		alert('Vui lòng nhập từ khóa cần tìm!');
		return;
	}
}
