$(window).load(function() {
	$('.popup').click(function() {
		window.open($(this).attr('href'),'popup','width=500,height=280,scrollbars=yes')
		return false;
    });
});

$(window).load(function() {
	$('.service-popup').click(function() {
		window.open($(this).attr('href'),'popup','width=500,height=280,scrollbars=no')
		return false;
    });
});