// JavaScript Document

function popup (which) {
	if(which == 'shop') {
		var new_window1 = window.open('http://www.hn-shop24.com','fenster1','scrollbars=yes,resizable=yes,width=778,height=510,locationbar=no,menubar=no,status=yes');
		document.getElementById("shop_link").blur();
		new_window1.focus();
	} else {
		var new_window2 = window.open('Flyer/Flyer.pdf','fenster2','scrollbars=yes,resizable=yes,width=778,height=510,locationbar=no,menubar=no,status=yes');
		document.getElementById("shop_link").blur();
		new_window2.focus();
	}		
		

}


