// (c) 2001 - 2006, EIKONA Medien GmbH, it.x informationssysteme gmbh, Mosaiq-Media GmbH, Alle Rechte vorbehalten.

// History --------------------------------------------------------------------------------
// 27.11.06 hma Erstellung.
// History --------------------------------------------------------------------------------
 
function dd_land_has_changed(objDropdownbox)
{
	if(objDropdownbox)
	{
		var strParams = Form.serialize(document.forms.form);
		
		// die AJAX-spezifischen Parameter hinzufügen
		strParams = strParams + '&bereich=portal&com_ajax=get_search_form';
	
		// AJAX-Updater-Request absetzen
		var objAjax = new Ajax.Updater('div_haendlersuche', 'http://' + window.location.hostname + '/ajax.php', { method: 'get', parameters: strParams }); 
		 //var objAjax = new Ajax.Updater('div_haendlersuche', 'http://' + window.location.hostname + '/ddcom_meisterschmuck/ajax.php', { method: 'get', parameters: strParams }); 
	}
}

function search_dealers()
{
	// Die Länderdropdownbox holen
	var objDropdownLand = document.forms.form.suchformular_land;
	
	if(objDropdownLand)
	{
		// Wenn kein Land ausgewählt ist, Fehlermeldung ausgeben
		if(objDropdownLand.options[objDropdownLand.selectedIndex].value == 0)
		{
			var objFehlertextLand = $('fehlertext_land');
			
			if(objFehlertextLand)
			{
				objFehlertextLand.style.display = "inline";
			}
		}
		else
		{
			// Ansonsten das Formular (die Suche) abschicken
			document.forms.form.submit();
		}
	}
}
