function popPlans(page){
	leftPos = 0
	topPos = 0
	if (screen){
		leftPos = (screen.width / 2) - 200
		topPos = (screen.height / 2) - 195
	}
	planWin=window.open(page+'.asp','planWin','width=400, height=390, top='+topPos+', left='+leftPos);
	if (window.focus) {
		planWin.focus();
	}
}