// Open content in new window
// ---------------------------------
function newWindow(url) {
   var win = window.open(url, "neuesFenster", "width=555,height=360,status=yes,scrollbars=yes,resizable=yes");
   win.focus();
}

function fullNewWindow(url) {
   var win = window.open(url, "neuesFenster", "width=700,height=500,status=yes,scrollbars=yes,resizable=yes,toolbar=yes,menubar=yes");
   win.focus();
}
