

function popup(url, w, h) {
  w = (w) ? w += 20 : 150;  // 150px*150px is the default size
  h = (h) ? h += 25 : 150;
  var args = 'width='+w+',height='+h+',status=yes,scrollbars=yes,resizable=yes';
  pop = window.open(url,'',args);
  return (pop) ? false : true;
}

function versand() {
	return popup('blank.php?site=Lieferung+%26+Versand', 400, 400);
}

function agbs() {
	return popup('blank.php?site=AGBs', 400, 400);
}
