function go_search(cate)
{
	if (cate == 'all')
	{
		var country = document.all['events_form'].elements['country'];
		var year = document.all['events_form'].elements['year'];
		var month = document.all['events_form'].elements['month'];

		country.selectedIndex = 0;
		year.selectedIndex = 0;
		month.selectedIndex = 0;
	}

	//document.all['events_form'].action = 'index.php?module=search&cate=' + cate;
	//document.all['events_form'].submit();

	document.all['events_form'].elements['module'].value = 'search';
	document.all['events_form'].elements['cate'].value = cate;
	document.all['events_form'].submit();
}
function skip_page(module)
{
	if (window.event.keyCode == 13)
	{
		var page = document.all['c_page'];
		self.location = "index.php?&module=" + module + "&id=" + page.value;
	}
}
function check_key()
{
	if (window.event.keyCode == 13)
	{
		document.all['events_form'].action = 'index.php?module=search&cate=quick';
		document.all['events_form'].submit();
	}
}
