<!--//<![CDATA[

// Popup function							 
var win = null;
function popup(w, h, scrol, artikelid) {
	var winl = (screen.width-w)/2;
  var wint = ((screen.height-h)/2) - 94;
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
	win = window.open('/plugs/addtocart.php?id=' +  artikelid, 'Sportvraag', 'toolbar=0,scrollbars=' + scrol + ',location=0,statusbar=0,menubar=0,resizable=1,height=' + h + ',width=' + w + ',top=' + wint + ',left=' + winl + '');
	win.window.focus();
}
//]]>-->
