function getAllItems() {
	var itemhandler= new Ajax;
	itemhandler.url='http://www.gebrauchtroboter.at/incs/getAllItems.php';
	itemhandler.params="";
	itemhandler.onSuccess=successHandler;
	itemhandler.onError=errorHandler;
	itemhandler.doRequest();
}

function errorHandler(msg) {}
function successHandler(txt, xml) {}


