/*
 * Waljis Travel / Karibu Holidays
 * Javascript Control Script
 * By Extreme Web Technologies
*/

function getValue(element) {
	return document.getElementById(element).value;
}

function popup(url) {
	window.open(url, 'contact', 'width=700, height=200, scrollbars=yes');
}

function clearForm(form_name) {
	form = document.getElementById(form_name);
	form.reset();
}

function updateCities(element) {
	
	country_value = getValue(element);
	
	if(country_value > 0) {
		document.location.href = '?country=' + country_value;
	}
	
}

function updateHotels(element) {
	
	city_value = getValue(element);
	
	if(city_value > 0) {
		document.location.href = '?city=' + city_value;
	}
	
}

function getPackages(element) {
	
	country_value = getValue(element);
	
	if(country_value > 0) {
		document.location.href = '?country=' + country_value;
	}
	
}