﻿function ShowNewsletter (url)
{
	var numTop;
	var numLeft;
	var numWidth;
	var numHeight;

	// Determine window size properties
	numWidth = 800;
	numHeight = 550;
	numLeft = (window.screen.availWidth - numWidth) / 2;
	numTop = (window.screen.availHeight - numHeight) / 2;
    
	// Open popup window
	window.open (url, "Newsletter", "height=" + numHeight + ", width=" + numWidth + ", top=" + numTop + ", left=" + numLeft + ", location=no,status=no,titlebar=yes,toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes", false);
	
}
