function registerProductInfoEvents(e) {
	if($('productinfo')) {

			/*var plist = getElementsByClassName($('productinfo'),'input','minibutt');
			plist.each(function(z) {
				z.onclick = addProduct;
				if (z.captureEvents) z.captureEvents(Event.CLICK);
			});*/

			var qp = $('addproduct_add');
			qp.onclick = addProduct;
			if (qp.captureEvents) qp.captureEvents(Event.CLICK);
		
			var qlist = getElementsByClassName($('productinfo'),'input','minibutt');
			qlist.each(function(z) {
				z.onclick = addProduct;
				if (z.captureEvents) z.captureEvents(Event.CLICK);
			});
	}

}

onloads.push(registerProductInfoEvents);
if (window.captureEvents) window.captureEvents(Event.LOAD);
