function print2web_async_show(container,titleelem) {
	var container=document.getElementById(container);
	var found=0;
	if(container&&window.print2web_avisannoncer)
		for(var i=0; i<print2web_avisannoncer.length; i++) {
			var img=document.createElement('IMG');
			img.src=print2web_avisannoncer[i][0];
			img.alt='Annonce';
			img.title='Klik for at se annoncen i stort format';
			img.style.cursor='pointer';
			img.onclick=new Function("w=window.open('"+print2web_avisannoncer[i][1]+"','AnnoncePopup','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,width=780,height=550'); w.focus();");
			container.appendChild(img);
			found++;
			if(print2web_avisannoncer[i][2]) {
				var statdiv=document.createElement('DIV');
				statdiv.style.position='absolute';
				statdiv.style.top='0px';
				statdiv.style.left='0px';
				statdiv.style.visibility='hidden';
				var stat=document.createElement('IMG');
				stat.width=0;
				stat.height=0;
				stat.style.width='0px';
				stat.style.height='0px';
				stat.src=print2web_avisannoncer[i][2];
				statdiv.appendChild(stat);
				container.appendChild(statdiv);
			}
		}
	if(found) {
		container.style.display='block';
		if(titleelem) {
			var title=document.getElementById(titleelem);
			if(title)
				title.style.display='block';
		}
	}
	return found;
}

