
	//////////////////////
	// MESSAGE CODES LADEN
	//////////////////////
	Message.load("textsuche", "index.startseite.");

	var startseite = {
		sbform: function() {
			if(document.schnellsuche.textsuche.value != "" && document.schnellsuche.textsuche.value.length < 3) { 
				Message.post("textsuche"); 
				return false; 
			}
			else {
				var typ = document.schnellsuche.typ.value;
				document.schnellsuche.action = "/suchen/suchergebnis-1.php";
				return true;
			}		
		},
		
		reg: function() {
			document.location.href = "/" + LANG + "/anmeldung/privat.php";
		},
					
		popaufruf: function(aufruf,breite,hoehe) {
			var startx = (screen.width /2) - (breite /2);
			var starty = (screen.height /2) - (hoehe /2);
			var breiteneu = breite*2;
			var hoeheneu = hoehe;
			popup = window.open(aufruf,'update',"left="+startx+",top="+starty+",width="+breiteneu+",height="+hoeheneu+",location=no,toolbar=no,menubar=no,status=no,resizable=yes");
			popup.focus;
		},
		
		schnellsuche: function(form) {
			if(form.nr.length.empty()) {
				return false;
			}
			
			return true;
		}
	};