var Notify="";var width=0;var height=0;var center_top=0;var center_left=0;var WinWidth=138;var WinHeight=23;var FunctionName="";var FunctionVar="";
var MessageWindow =	'<div id="AlertWindow" style="position:absolute;top:'+center_top+';left:'+center_left+';width:'+WinWidth+';height:'+WinHeight+';display:none;z-index:999999;">';
MessageWindow += '<div id="AlertIcon" style="position:relative;float:left;border:0px solid #FF8800;width:20px;height:23px;margin:3px 0px 0px 0px;vertical-align:middle;" align="center"></div>';
MessageWindow += '<div id="MessageDiv" style="position:relative;float:left;border:0px solid #FF8800;width:115px;height:23px;margin:4px 0px 0px 0px;vertical-align:middle;"><font class="Progress"><b>&nbsp;loading...&nbsp;&nbsp;</b></font></div>';
MessageWindow += '</div>';
document.write(MessageWindow);
function ZeichneNeu(){if(window.innerWidth){width=window.innerWidth;height=window.innerHeight;}else{width=screen.width;height=screen.height;}center_top=Math.ceil((height-WinHeight)/2);center_left=Math.ceil(960-WinWidth+((width-980)/2));document.getElementById("AlertWindow").style.top=center_top;document.getElementById("AlertWindow").style.left=center_left;}
xajax.realCall = xajax.call;
//override the call function to bend to our wicked ways
xajax.call = function(sFunction, aArgs, sRequestType)
{	
	if(window.innerWidth){width=window.innerWidth;height=window.innerHeight;}else{width=document.body.offsetWidth;height=document.body.offsetHeight}
	center_top=Math.ceil((height-WinHeight)/2);center_left=Math.ceil(960-WinWidth+((width-980)/2));
	this.$('AlertWindow').style.left = center_left;
	this.$('AlertWindow').style.top = 255;
	this.$('AlertWindow').style.display = 'block';
	return this.realCall(sFunction, aArgs, sRequestType);
}
xajax.realProcessResponse = xajax.processResponse;
//override the processResponse function
xajax.processResponse = function(xml)
{
	this.$('AlertWindow').style.display = 'none';
	return this.realProcessResponse(xml);
}
