How i can add js popup in my site

Hi,
I want add js popup to my site, but i dont know how.

Site:

fenster-norta.at/angebot/

I need all link from angebot in new popup or frame.

Main.js

/* Author:

*/

$(function() {
	//$('#menu.single .taxlist a').click(function(event) {
		//event.preventDefault();
		//$('body,html').animate({scrollTop:$(document).height()},800, 'linear', function() {
	//		$('body,html').animate({scrollTop:823},500, 'linear', function() {
			
	//	});
	//	return false;
	//});	
	$("html, body").animate({ scrollTop: $('#parent').offset().top }, 1000);
	$('.to-top').click(function () {
			$('body,html').animate({
				scrollTop: 0
			}, 300);
			return false;
		});

	$('#menu a, #parent .list-thumb-child  a').tooltip();
	$(".picture a").click(function() {
        $.fancybox({
           'padding'           : 0,
           'overlayShow'   : false,
           'href': this.href, //<--LIKE THIS
        });
        return false;
    });

});



Thanks 4 help !!

The fancybox demo page has an iframe demo. The iframe can contain content from other sites. That seems to be the solution that you’re needing there.