windowOnLoad.add("Uship.init()");
	
	
	var Uship = {
		init: function() {			
		 	
			$$("[name=uship_button]").invoke("observe", "click", this.inform);
		
		},
		inform: function(){
			var ziel=$$("[name=c]")[0].value;
			var quelle="\nlife System";
			
			new Ajax.Request("/ajax/admin/ajax.uship.php", {
						postBody: "ziel="+ziel+"&quelle="+quelle+"&action=shift",
				        
						onSuccess: function(r) {
							
						  document.uship_form.submit();
							
						}
			});
		
		}
	}
