// common javascript document

function popup(link) //news window
	{
	if (self.screen) { 
    sw = screen.width
    sh = screen.height
    w = 570 //breite
    h = 570 //hoehe
    cx = (.5*sw) - (w*.5)
    cy = (.5*sh) - (h*.5)
    var  dimentions_and_such = 'width='+w+','+'height='+h+',' + 'screenX=' +cx+','+'screenY='+cy+','+'left='+cx+','+'top='+cy
    }
	Pop=window.open(link,"newsletter",dimentions_and_such);
	}
	
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
