//var aaa;
function resizeEventsIframe(cnt, height, iframe, minh) {
	cnt.height( height > minh ? height : minh );
	$(iframe).load(function(){
	//aaa=$('body', $(iframe).contents());
	//$(this).css({height : $('body', this).height()});
		//cnt.css({'overflow-y': $(this).contents().height()>height ? 'scroll' : 'hidden'});
		$(this).css({'overflow-x': 'hidden'});
	});
}

