<!--


	// determine size of user's screen
	height = window.screen.availHeight;
	width = window.screen.availWidth;
	
	// snap window to right side of screen
	leftVar = width - 380;
	
	function textWindow(url) {

		newWindow = window.open(url,'newWindow','resizable=yes,scrollbars=yes,toolbar=yes,width=370,height=600,left='+leftVar);
		newWindow.focus();
	}


//-->
