<!--
function neueypos (Phpscript, Element, Startpos, Soviel) {
	var Element=getElement ("id", Element, 0);
	var Oldpos=Element.style.top ;
	if (!Oldpos) { Oldpos=Startpos; }
	movePixValue(Phpscript, Element, Oldpos, Soviel) ;
}

function movePixValue(Phpscript, Element, Oldpos, Soviel)
{
	var xmlHttp;
	try
	{
		// Firefox, Opera 8.0+, Safari
		xmlHttp=new XMLHttpRequest();
	}
	catch (e)
    {
		// Internet Explorer
		try
		{
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e)
		{
			try
			{
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (e)
			{
				alert("Your browser does not support AJAX!");
				return false;
			}
		}
    }
	xmlHttp.onreadystatechange=function()
	{
		if(xmlHttp.readyState==4)
		{
			pixValue=xmlHttp.responseText;
			Element.style.top = pixValue ;
		}
	}
	var Phpurl=Phpscript+"?pos="+Oldpos+"&value="+Soviel;
	xmlHttp.open("GET", Phpurl, true);
	xmlHttp.send(null);
}
//-->
