function openWindow(myPage, isDev, removePopup) {
	myRoot = myPage.split('?');
	myRoot = myRoot[0];
	myWidth = 590;
	myHeight = 400;
	myPageID = 'window';
	if (myRoot == 'site_search.cfm') {
		myPageID = 'site';
		myHeight = 530;
		myWidth = 590;
	} else if (myRoot == 'questionnaire_answers.cfm') {
		myPageID = 'site';
		myHeight = 530;
		myWidth = 640;
	}

	if (!removePopup) {
		if (isDev > 0) {
			myPage = "/acorntracker/popup/"+myPage;
		} else  {
			myPage = "/popup/"+myPage;
		}
	}
	window.open(myPage, myPageID, 'scrollbars=1,status=1,toolbar=0,resizable=1,width='+myWidth+',height='+myHeight);
	//window.open('popup/'+myPage, 'myPage');
}
