function abrelo (url) {
 fenster = window.open(url, "View", "width=860,height=700,resizeable=yes,scrollbars=yes");
 fenster.focus();
 return false;
}

function abreloAdv (url,width,height) {
	 fenster = window.open(url, "View", "width="+width+",height="+height+",scrollbars=auto");
	 fenster.focus();
	 return false;
	}

$(function () {
	$('.tippy').each(function() {  
		   $(this).qtip({
		          content: {
		              url: "http://www.der-schweighofer.at/artikel/mini/" + $(this).attr("id")
		          },
		          hide: { when: 'mouseout', fixed: true, delay: 500 },   
		          position: {
		             corner: {
		                target: 'bottomLeft',
		                tooltip: 'topLeft'
		             }
		          }
		   });
		});
	});
