<!-- Begin
function region(obj){ 
	nr=obj.selectedIndex; 
	while(document.forms['Setup'].StateID.length>1){ 
		document.forms['Setup'].StateID.options[document.forms['Setup'].StateID.length-1]=null;
	} 
	for(i=0;i<beschriftung[nr].length-1;i=i+2){ 
		x=new Option(beschriftung[nr][i],beschriftung[nr][i+1]) ;
		document.forms['Setup'].StateID.options[document.forms['Setup'].StateID.length]=x;
	} 
	document.forms['Setup'].StateID.selectedIndex=0 ;
}

function Fav(nr,id){
	if (document.images['Favorit'+nr].src.indexOf("notice-de.gif") !=-1){
		document.images['FavoritDummy'+nr].src="/search/favorit.php?Do=Add&ID="+id+"&reload="+Math.floor(Math.random()*1000+1); 
		document.images['Favorit'+nr].src= "http://"+window.location.hostname+"/img/search/noticed-de.gif"; 
	}
	else{ 
		document.images['FavoritDummy'+nr].src="/search/favorit.php?Do=Del&ID="+id+"&reload="+Math.floor(Math.random()*1000+1); 
		document.images['Favorit'+nr].src= "http://"+window.location.hostname+"/img/search/notice-de.gif"; 
	}
}
// End -->
