var popup = function(url) {
	$(".popup iframe").attr("src", url);
	$(".popup").dialog("open");
}

$(function() {
	var containerHeight = $(window).height(); 
	$(".popup iframe").height(containerHeight);
	
	$(".popup").dialog({
		autoOpen: false,
		modal: true,		
		draggable: false,
		width: 660,
		height: containerHeight,
		position: 'top',
		resizable: false
	})
	
	$(window).resize(function() {
		$(".popup").dialog("option", "height", $(window).height());
		$(".popup iframe, .popup .content").height($(window).height());		
	});

});	

