/**
 * @author daun01
 */


 function switch_view(id) {
 	var css = document.getElementById(id).style;
 	if(css.display == 'block') {
 		css.display = 'none';
 		document.searchform.ext_search.value = 0;
 		document.searchform.reset();
 		document.searchform.suchwort.value = "";
 		document.searchform.wettbewerbsart.selectedIndex = 0;
 		document.searchform.region.selectedIndex = 0;
 		document.searchform.gebaeudetyp.selectedIndex = 0;
 		document.searchform.zeitraum.selectedIndex = 0;
 	} else {
 		css.display = 'block';
 		document.searchform.ext_search.value = 1;
 	}
 }

