<!--

function runTopic( target )
{
	if((screen.width>=1024) && (screen.height>=768))
	{
		var features = "directories=0,width=800,height=650,location=0,menubar=0,resizable=0,scrollbars=0,status=0,titlebar=0,toolbar=0";
		var appWindow = window.open( target, 'appWindow', features );
		appWindow.focus();
	}
	else
	{
		var $alertstring = 'Your screen resolution appears to be below 1024 by 768. ';
		$alertstring += 'This Online Learning module will not display properly below that resolution. ';
		$alertstring += 'Please re-set your resolution and start again. ';
		alert( $alertstring );
	}
}

function runActivity( target )
{
	if((screen.width>=1024) && (screen.height>=768))
	{
		var features = "directories=0,width=800,height=600,location=0,menubar=0,resizable=0,scrollbars=0,status=0,titlebar=0,toolbar=0";
		var appWindow = window.open( target, 'appWindow', features );
		appWindow.focus();
	}
	else
	{
		var $alertstring = 'Your screen resolution appears to be below 1024 by 768. ';
		$alertstring += 'This Online Learning module will not display properly below that resolution. ';
		$alertstring += 'Please re-set your resolution and start again. ';
		alert( $alertstring );
	}
}

-->