		function moreThan(Obj, Count){
				var inhalt = Obj.value;
				if(Obj.value.length > Count){
						
						help = window.open("","Achtung","toolbar=no,statusbar=no,menubar=no,resizable=no,location=no,height=300,width=400,");
				
						links = document.body.clientWidth/2 - 200;
						oben = document.body.clientHeight/2 - 150;
						
						help.moveTo(links,oben);
						
						help.document.open();
						help.document.writeln("<html>");
						help.document.writeln("<head>");
						help.document.writeln("<title>Textlänge</title>");
						help.document.writeln("<meta http-equiv=\"pragma\" content=\"no-cache\">");
						help.document.writeln("<LINK REL=\"STYLESHEET\" TYPE=\"text/css\" HREF=\"/css/help.css\">");
						help.document.writeln("</head>");
						help.document.writeln("<body leftmargin=\"5\" topmargin=\"2\">");
						help.document.writeln("<h1 class=\"warn\">Der Text ist zu lang!</h1>\n");
						help.document.writeln("Bitte beachten Sie, dass dieser Text maximal "+Count+" Zeichen lang sein darf!<br><br><center><a href=\"javascript:window.close();\">Fenster schliessen</a></center></body></html>\n") 
						help.document.close();
						help.focus();
						Obj.value = inhalt.substring(0,Count);
				}
		}

  function getHelp(headline, text){ 

				help = window.open("","Hilfe","toolbar=no,statusbar=no,menubar=no,resizable=no,location=no,height=300,width=400,");
				
				links = document.body.clientWidth/2 - 200;
				oben = document.body.clientHeight/2 - 150;
				
				help.moveTo(links,oben);
				
				help.document.open();
				help.document.writeln("<html>");
				help.document.writeln("<head>");
				help.document.writeln("<title>Hilfe und Erklärungen:</title>");
				help.document.writeln("<meta http-equiv=\"pragma\" content=\"no-cache\">");
				help.document.writeln("<LINK REL=\"STYLESHEET\" TYPE=\"text/css\" HREF=\"/css/help.css\">");
				help.document.writeln("</head>");
				help.document.writeln("<body leftmargin=\"5\" topmargin=\"2\">");
				help.document.writeln("<h1>"+headline+"</h1>\n");
				help.document.writeln(text+"<br><br><center><a href=\"javascript:window.close();\">Fenster schliessen</a></center></body></html>\n") 
				help.document.close();
				help.focus();
				
		}
		
		function multiSelectClear(select){
				if(select[j].value = 'keine'){
						for(var j = 0; j < select.length; j++) {
								if(select[j].value = 'keine'){
										select[j].selected = true;
								} else {
										select[j].selected = false;
								}
						}		
				}
		}

		function newWin(url,name,rs,sc,mn,tl,lo,wd,hi)
		{
			openWindow = window.open(url,name,'resizable='+rs+',scrollbars='+sc+',menubar='+mn+',toolbar='+tl+',location='+lo+',width='+wd+',height='+hi);
		}

function high(LinkObject,color)
{
 LinkObject.bgColor=color;
}
function low(LinkObject,color)
{
 LinkObject.bgColor=color;
 // alert(LinkObject.bgColor);
}
window.focus();

