/* Started Saturday December 17, 2005 1:32pm by Oliver Merk */
/* Revised Saturday December 17, 2005 1:35pm by Oliver Merk */

function sendEmail() {

	var screenWidth = screen.width;
	var screenHeight = screen.height;

	var popWidth = 500;
	var popHeight = 450;
	var left = (screenWidth/2) - (popWidth/2);
	var top = (screenHeight/2) - (popHeight/2);

	var winAttributes = 'width=' + popWidth + ',height=' + popHeight +
		',resizable=1,status=1,scrollbars=yes,titlebar=0,margin=0,' +
		'top=' + top + ',left=' + left + '';

	var popUpUrl = 'emailpop.cfm?tAction=email';
	var win = null;
	win = window.open('','popUpUrl', winAttributes);
	win.focus();
	win.location.href = popUpUrl;
	if (win.opener == null) {
		win.opener = self;
	}
}
