// JavaScript Document
function $(_id)
{
	return document.getElementById(_id);
}
function link_go()
{
	var cboLink = $("lstLinkSites");
	if (cboLink.value != -1)
	{
		window.location = cboLink.value;
	}
	else
	{
		alert("Xin vui lòng chọn liên kết web.");
	}
}
function search_click()
{
	var txtSearch = $("txtSearch");
if(txtSearch.value == '') 
	{
		alert('Xin vui lòng nhập thông tin tìm kiếm!');
		return false;
	}
	window.location = "timsanpham.php?search=" + txtSearch.value;
	return false;
}

//
//jumps to anchor
function jumptoanchor()
{
	//test for anchor existence
	if(window.location && window.location.href.match(/#(\w.+)/))
	{
		//jump to anchor
		window.location.hash=window.location.href.match(/#(\w.+)/)[1]; 
	}
}