
/**
 * to open a popup with user-defined content in realtime ;)
 */
function realtimePopup(content) {
	var winParams = 'width=650,height=550,resizable=1';
	var popup = window.open('','popup',winParams);
	popup.document.open();
	popup.document.writeln('<html><head><title>some title</title>');
	popup.document.writeln('<link rel="stylesheet" type="text/css" href="http://'+location.hostname+'/fileadmin/templates/main/includes/style.css" />');
	popup.document.writeln('</head><body>');
	popup.document.writeln(content);
	popup.document.writeln('</body></html>');
	popup.document.close();
	return false;
}