// +++++++++++++++++++++++ Browserfenster öffnen +++++++++++++++++++++++ 

function JDJL_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//  +++++++++++++++++++++++++++++  Popup Fenster öffnen +++++++++++++++++
var win=null;
function newwin(url,w,h,t,l)
{
win=window.open(url,"jungdemokratenhessen","resizable=no,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,copyhistory=0,width="+w+",height="+h+",top="+t+",left="+l+",screenX="+t+",screenY="+l)
win.focus;
}