function IeUnrenderedAps() {

	var that = this;

	that.asArray = function() {
		var allEls = document.getElementsByTagName('*');
		var aps = [];
		for (var i=0; i<allEls.length; ++i) {
			if ( (allEls[i].currentStyle && allEls[i].currentStyle.position=='absolute') ||
			     (window.getComputedStyle && window.getComputedStyle(allEls[i], null).position=='absolute') ) {
				aps.push(allEls[i]);
			}
		}
		return aps;
	}


	that.forceRender = function () {
		var aps = that.asArray();
		for (var i=0; i<aps.length; ++i) {
			aps[i].style.zoom = 1;
		}
	}

}

