var windowName = "SprintReading"
function popLarge(url)
{
	features = "scrollbars=yes,width=639,height=480";
	theWindow = window.open(url,windowName,features);
	theWindow.focus();
	return false;
}
function popNarrow(url)
{
	features = "scrollbars=yes,width=298,height=480";
	theWindow = window.open(url,windowName,features);
	theWindow.focus();
	return false;
}