function ShowNewsletter(id)
{
	newwindow=window.open('','preview','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=700,height=600,left = 300,top = 212');
	if (newwindow.document.getElementById("content") == null)
		newwindow.document.write("<div id='content'><div id='loading'>Loading...</div></div>");
	else
		newwindow.document.getElementById("content").innerHTML = "<div id='loading'>Loading...</div>";
	
	$.ajax({
		type: "POST",
		url: "newsletters/view/"+id,
		success: function(response) {
			newwindow.document.getElementById("content").innerHTML = "";
			newwindow.document.getElementById("content").innerHTML = response;
			if (window.focus) {newwindow.focus()}
		}
	});
	
	return false;
}
