// JavaScript Document
document.observe('dom:loaded',initPage);

function initPage(){
	$$('a.newsletter-view').each(function(object,index){
		Event.observe(object,'click',function(e){
			var url = this.href;		
			var viewer = window.open(url,'messageviewer','height=600,width=800,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no,titlebar=no');
			viewer.focus();
			return false;
		});
	});
}