var boxyBox;

function showIt(link) {
	var newLink = "" + link;
	$.get(newLink,"", function(data){
		var trueData = data;
		var titleData = "Information";
		var mitUeberschrift = data.indexOf('h1');
		if (mitUeberschrift != -1) {
			var temp = data.split("</h1></div>");
			trueData = '<div id="boxyContent">' + temp[1];
			titleData = temp[0].split("<h1 class=\"csc-firstHeader\">")[1];
		}
		if (boxyBox) {
			boxyBox.setContent(trueData);
			boxyBox.setTitle(titleData);
			boxyBox.center();
			boxyBox.show();
		}
		else {
			boxyBox = new Boxy(trueData, { title: titleData, draggable: false, modal: true, closeText:'Schließen'});
		}
	});
}

$(document).ready(function(){
		$('.internal-link-new-window').attr('onclick', '');
		$('.internal-link-new-window').click(function() {
				showIt($(this).attr('href') + "&type=2");
				return false;
		});
});
