// JavaScript Document

var rootsite = 'http://www.masscenterforag.org/';

function newWindow(url,name,x,y,params) {
	if(name != null && url != null) {
		if(x == null) x = 600;
		if(y == null) y = 400;
		if(params == null) params = "";
		var win = window.open(url, name, 'width='+x+',height='+y+',scrollbars=yes'+params);
		win.moveTo( (screen.width/2 - x/2), (screen.height/2 - y/2) );//center window on screen
		win.focus();
		return win;
	}
}
function showAnswer(url) { newWindow(rootsite + 'answers/' + url, 'answer',600,400); }
function showFeedback(url) { newWindow(rootsite + url, 'feedback',420,400); }
