// JavaScript Document

function popup(url) {
   fenster = window.open(url, "popup", "width=1000,height=500,status=no,scrollbars=no,resizable=yes");
   fenster.focus();
}


function send(url, data) {
	areq = $.ajax({
		type: "POST",
		url: url,
		data: data+'&ajax=1',
		timeout: 20000,
		dataType: "xml",
		success: function(xml) {
			var teval = $("eval",xml).text();					
			if (teval != '') {
				eval(teval);
			}
		},
		error: function(request, errorType, errorThrown) {
			//alert('Bei der Serveranfrage ist ein Fehler aufgetreten: ' + errorThrown);
		}
	});
}

function jserror(msg) {
	alert(msg);
}
