<!--
// common javascript document

function newsletter(link) //news window
	{
	if (self.screen) { 
    sw = screen.width
    sh = screen.height
    w = 320 //breite
    h = 240 //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);
	}

	//-->