<!--
function newsletterArchive(page)
{
	// Place the popup window in the center of the screen
	var width = 800;
	var height = 1500;
	var xPos = screen.availWidth > width ? screen.availWidth/2 - width/2 : 0;
	var yPos = screen.availHeight > height ? screen.availHeight/2 - height/2 : 0;
	var features = "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,status=no,width=" + width + ",height=" + height + ",left=" + xPos + ",top=" + yPos;
	
	OpenWin = this.open(page, "CtrlWindow", features);
}
//-->