function information_startup(popupid) {
	var popup = $(popupid);
	popup.dialog({ autoOpen: false, modal: true, width: 500, height: 500});
	$('.items.popup a').click(function(){
		var jsonurl = $(this).attr('href') + '.json';
		$.ajax({
			url: jsonurl,
			dataType: 'jsonp',
			success: function(json) {
				html = '<div class="information-view">';
				html = html + '<div class="title">' + json.Information.subject + '</div>';
				html = html + '<div class="image">' + json.Information.image + '</div>';
				html = html + '<div class="content">' + json.Information.content + '</div>';
				$(popup).html(html);
				$(popup).dialog('open');
				$(popup).dialog({title: json.Information.subject});
			}
		});
		return false;
	});
}

