		var j=5;
		function show_more()
		{                   
			test = 'more'+i;
 			document.getElementById(test).style.display = 'block';
			i = i+j;                                              
			
			if (i > 5)
			{
				document.getElementById('show_less').style.display = 'inline';
			}
			
			if (i == 100 || i >= maxnews) 
			{
				document.getElementById('show_more').style.display = 'none';
			}
		}
		
		function show_less()
		{  
			i = i-j;
			if (i > 0)
			{
				test = 'more'+i;
	 			document.getElementById(test).style.display = 'none';
			}
			
			if (i == 5)
			{
				document.getElementById('show_less').style.display = 'none';
			}
			
			if (i < maxnews) 
			{
				document.getElementById('show_more').style.display = 'inline';
			}
		}           
		
		
		
			function formcheck1(wert)
			{
				if (wert == "focus" && (document.suche1.suchwort.value == "Suchwort" || document.suche1.suchwort.value == "Keyword"))
				{
					document.suche1.suchwort.value='';
				}
				
				if (wert == "blur" && document.suche1.suchwort.value == "")
				{
					document.suche1.suchwort.value='';
				}				
			}
			
			function formcheck2(wert, feld)
			{
				if (wert == "focus" && feld == "suchwort" && (document.searchform.suchwort.value == "Suchwort" || document.searchform.suchwort.value == "Keyword"))
				{
					document.searchform.suchwort.value='';
				}
				if (wert == "focus" && feld == "suchort" && (document.searchform.suchort.value == "Ort" || document.searchform.suchort.value == "City/Region"))
				{
					document.searchform.suchort.value='';
				}
				
				if (wert == "blur" && feld == "suchwort" && document.searchform.suchwort.value == "")
				{
					document.searchform.suchwort.value='';
				}	
				if (wert == "blur" && feld == "suchort" && document.searchform.suchort.value == "")
				{
					document.searchform.suchort.value='';
				}				
			}