﻿function FN_openWin(thisPage, preWidth, preHeight){

	screenHeight=screen.height*.7;
	myScrollBars=1;
	myWidth=preWidth+20;

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

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

	newPage=thisPage

	commands='toolbar=0,location=0,statusbar=0,scrollbars='
	commands+=myScrollBars
	commands+=',width='
	commands+=myWidth
	commands+=',height='
	commands+=preHeight
	commands+=',resizable=1'

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

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

}

function FN_myContactWin(){

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

	fakWidth=myWidth;


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

	myWidth+=20;


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

	newPage="emailer.php";

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

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

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

}
// -->