function popup(lnk) {
	var pw = 1036;
	var ph = 480;
	var url = '/trailer.html';
	
	if(lnk=='trailer') {
		pw = 810;
		ph = 340;
	} else {
		url = lnk.attr('href');
	}
	
	jQuery('body').append('<a href="" id="hider" title="return to site" /><div id="pop"><iframe width="'+pw+'" height="'+ph+'" frameborder="0" src="'+url+'"></iframe></div>');
	jQuery('#hider').height(jQuery('#main').height()).click(function() { jQuery('#hider,#pop').remove(); return false; });
	
	var ww = jQuery(window).width();
	var wh = jQuery(window).height();
	var pos = 'fixed';
	
	ww = Math.floor((ww-pw)/2);
	wh = Math.floor((wh-ph)/2);
	
	if(ww<0) {
		ww = 0;
		wh += jQuery(window).scrollTop();
		pos = 'absolute';
	}
	
	if(wh<0) {
		wh = jQuery(window).scrollTop();
		ww = 0;
		pos = 'absolute';
	}
	
	jQuery('#pop').css({'top' : wh, 'left' : ww, 'position' : pos, 'width' : pw, 'height' : ph});
	jQuery('#hider').css('position',pos);
	jQuery('#hider,#pop').show();
	
	return false;
}
