<!--
function openNewWindow(i)
{
	var url = "http://www.";
	switch(i)
	{
		case 1:
			url += "mentalhealth.com/";
			break;
		case 2:
			url += "apa.org/";
			break;
		case 3:
			url += "texaspsyc.org/";
			break;
		case 4:
			url += "asppaustin.org/";
			break;
		case 5:
			url += "personality.org/";
			break;
		case 6:
			url += "austinpsychologists.net/";
			break;
		case 7:
			url += "abpp.org/";
			break;
		case 8:
			url += "rorschach.com/";
			break;
		default:
			return false;
	}
	return openWin(url);
}
function openWin(url)
{
	var x = screen.width/3;
	var y = screen.height/6;
	var dx = screen.width/2;
	var dy = screen.height/2;
	var options = "location,menubar,resizable,scrollbars,toolbar,left=";
	options += x;
	options += ",top=" + y;
	options += ",width=" + dx;
	options += ",height=" + dy;
	var newWin = window.open(url, "window1", options);
	newWin.focus();
	return false;
}
-->
