﻿defaultWidth=459;
defaultHeight=440;

function FN_openWin(page){

	screenHeight=screen.height/2;
	myWidth=defaultWidth;

	myX=(screen.width-myWidth) / 2 
	myY=20 // compensate for mac/windows bars

	myWidth+=20;


	myY=(screen.height-screenHeight)/2 // center on page

	newPage="emailer.php?m="+page;

	commands='toolbar=0,location=0,scrollbars='
	commands+=0
	commands+=',width='
	commands+=myWidth
	commands+=',height='
	commands+=defaultHeight
	commands+=',resizable=0'

	NewWindow = window.open(newPage, "windowname", commands)

	//NewWindow.moveTo(myX,myY);
	NewWindow.focus();
}
