function clsSupplier() {
	this.getStatus = function(p_sPlaceHolder, p_sOrderNr, p_sBrand) {
		var oRPC  = new clsHTTPRequest();
		oRPC.setHTML();
		oRPC.setRequestURI('/ajax_exec/getSupplierStatus.php');
		oRPC.addParam('placeholder', p_sPlaceHolder);
		oRPC.addParam('order_nr', p_sOrderNr);
		oRPC.addParam('brand', p_sBrand);
		oRPC.post();
	}
}
