// JavaScript Document

 
	
	
    function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(54.33522,10.12708), 10);
        map.setUIToDefault();
      }
    }



function searchDealer(plz){
	
	if(plz == "" || plz == " " || plz == null || plz.length < 2	){
		$('#quickResult').hide();
		$('#loading').hide();
		$('#result').hide();
	}else{
		$('#result').hide();
		$('#loading').show();
		
		$('#dealerPlzValue').attr("value",plz);
		$("#getDealerForm").submit();	
	}
	
}

