// ********************* Function to set the value of the search filter and order flag and report the form *********************
function FilterFormSubmit(filterFieldValue, filterOrderValue) {
		document.headerFilter.filterFieldinput.value = filterFieldValue;
		document.headerFilter.filterOrder.value = filterOrderValue;
		document.headerFilter.submit();
	}
function doLogin(formName) {		
	document[formName].submit();
}
/***********************************************
* Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}
function setFields() {	
	
	if (initialRegion == "home") {
		document.distribSearch.txtCity.style.display = 'block';					
		document.getElementById('cityLabel').style.display = 'block';					
		document.distribSearch.txtCountry.style.display = 'none';					
		document.getElementById('countryLabel').style.display = 'none';	
		document.getElementById('townCityCells').style.display = 'block';
	}
	if (initialRegion == "export") {
		document.distribSearch.txtCountry.style.display = 'block';					
		document.getElementById('countryLabel').style.display = 'block';						
		document.distribSearch.txtCity.style.display = 'none';					
		document.getElementById('cityLabel').style.display = 'none';
		document.getElementById('townCityCells').style.display = 'none';		
	}
	if (initialRegion == "ukexport") {				
		document.distribSearch.txtCity.style.display = 'none';
		document.distribSearch.txtCountry.style.display = 'none';
		document.getElementById('cityLabel').style.display = 'none';
		document.getElementById('countryLabel').style.display = 'none';	
		document.getElementById('townCityCells').style.display = 'none';				
	}
	if (initialRegion == "") {				
		document.distribSearch.txtCity.style.display = 'none';
		document.distribSearch.txtCountry.style.display = 'none';
		document.getElementById('cityLabel').style.display = 'none';
		document.getElementById('countryLabel').style.display = 'none';	
		document.getElementById('distSrchButton').style.display = 'none';	
		document.getElementById('showAllButton').style.display = 'none';
		document.getElementById('townCityCells').style.display = 'none';		
	}
}
function updateForm() {
	var regionVal = document.distribSearch.region.value;
	switch(regionVal) {
		case 'home':
			document.distribSearch.txtCity.style.display = 'block';
			document.distribSearch.txtCountry.style.display = 'none';
			document.getElementById('countryLabel').style.display = 'none';
			document.getElementById('cityLabel').style.display = 'block';								
			document.distribSearch.txtCountry.value = '';
			document.getElementById('distSrchButton').style.display = 'block';
			document.getElementById('showAllButton').style.display = 'block';
			document.getElementById('townCityCells').style.display = 'block';
			break
		case 'export':
			document.distribSearch.txtCity.style.display = 'none';								
			document.distribSearch.txtCity.value = '';
			document.distribSearch.txtCountry.style.display = 'block';
			document.getElementById('cityLabel').style.display = 'none';
			document.getElementById('countryLabel').style.display = 'block';	
			document.getElementById('distSrchButton').style.display = 'block';
			document.getElementById('showAllButton').style.display = 'block';
			document.getElementById('townCityCells').style.display = 'none';
			break
		case 'ukexport':
			document.getElementById('distSrchButton').style.display = '';
			document.getElementById('showAllButton').style.display = '';
			document.distribSearch.txtCity.style.display = 'none';
			document.distribSearch.txtCountry.style.display = 'none';
			document.getElementById('cityLabel').style.display = 'none';
			document.getElementById('countryLabel').style.display = 'none';		
			document.distribSearch.txtCountry.value = "";
			document.distribSearch.txtCity.value = "";
			document.getElementById('townCityCells').style.display = 'none';
			break
		default:
			document.distribSearch.txtCity.style.display = 'none';
			document.distribSearch.txtCountry.style.display = 'none';
			document.getElementById('cityLabel').style.display = 'none';
			document.getElementById('countryLabel').style.display = 'none';	
			document.distribSearch.txtCountry.value = "";
			document.distribSearch.txtCity.value = "";
			document.distribSearch.txtSearch.value = "";
			document.getElementById('distSrchButton').style.display = 'none';
			document.getElementById('showAllButton').style.display = 'none';
			document.getElementById('townCityCells').style.display = 'none';
	}
}
function distribSearchForm() {
	if (document.distribSearch.region.value == "") {
		alert("Please select region");
		document.distribSearch.region.focus();
		return false;
	} 
}