//voorbeeldje in a nutshell:
//new IcepayOrder(123,5000,214,'abn').maakHTTPVerzoek(function(){location.href=this.Respons}).Start();
//initialiseert een order met default settings
IcepayOrder=function(reference,amount,paymentmethod,issuer){
	X(this,{
    reference:reference||'',//eigen id
		amount:amount||0,//let op, centen
    paymentmethod:paymentmethod||'',
    issuer:issuer||'',
    currency:'EUR',
    language:'NL',
    country:'NL',
    orderid:'',
    description:''
	})
};
IcepayOrder.prototype.maakHTTPVerzoek=function(reactie){
	var post={};
	for (var n in this) post['ic_'+n]=this[n];
	delete post.ic_maakHTTPVerzoek;
	return new HTTPVerzoek('/helper/icepay/',post,reactie);
};