
function select_sake_bygrade() {
	select_sake_list("grade");
}

function select_sake_byname() {
	select_sake_list("name");
}

function select_sake_list(mode) {
	dojo.byId('progress_status').innerHTML = "Please wait while updating the list ......";
	var param = new Object();
	param.mode = mode;
	param.region = dojo.byId('region').value;
	callPHP(param, "/httprequest.php?main_page=searchbyregion", res_products_list);
}

function res_products_list(response) {
	dojo.byId('products-list').innerHTML = response;
}

function SetMap(name) {
	document.getElementById('mainmap').style.cursor = "pointer";
	document.getElementById('mainmap').style.backgroundImage = "url('includes/templates/skjpn/images/map/map_" + name + ".gif')";
}

function OffMap(name) {
	document.getElementById('mainmap').style.cursor = "auto";
	document.getElementById('mainmap').style.backgroundImage = "url('includes/templates/skjpn/images/map/map.gif')";
}

function ClickMap(name) {
	document.getElementById('mainmap').style.backgroundImage = "url('includes/templates/skjpn/images/map/map.gif')";
	location.href = "/index.php?main_page=searchbyregion&region=" + name;
}

