function FN_openWin(thisPage, preWidth, preHeight){

	screenHeight=preHeight;
	myScrollBars=0;
	myWidth=preWidth;

	myX=(screen.width-myWidth) / 2 
	myY=20 // compensate for mac/windows bars

	if (screen.height < 601){
		screenHeight=(screen.height-60)-myY;
		myScrollBars=1;
		myWidth+=20;
	}

	myY=(screen.height-screenHeight)/2 // center on page

	newPage=thisPage

	commands='toolbar=0,location=0,scrollbars='
	commands+=myScrollBars
	commands+=',width='
	commands+=myWidth
	commands+=',height='
	commands+=screenHeight
	commands+=',resizable=0'

	NewWindow = window.open(newPage, "windowname", commands)

	NewWindow.moveTo(myX,myY);
	NewWindow.focus();

}

function FN_myContactWin(thisPage){

	screenHeight=screen.height/2;
	myWidth=483;
	myHeight=490;

	fakWidth=myWidth;


	myX=(screen.width-fakWidth) / 2 
	myY=20 // compensate for mac/windows bars

	myWidth+=15;


	myY=(screen.height-screenHeight)/2 // center on page

	newPage="contactengine.php?who="+thisPage

	commands='toolbar=0,location=0,scrollbars='
	commands+=1
	commands+=',width='
	commands+=myWidth
	commands+=',height='
	commands+=myHeight
	commands+=',resizable=0'

	NewWindow = window.open(newPage, "windowname", commands)

	NewWindow.moveTo(myX,myY);
	NewWindow.focus();

}