/*
function submitViewForm(resourceId, fileName)
{
	document.getElementById('otls_file_name').value = fileName;
	document.getElementById('otls_view_form').target = "_blank";
	document.getElementById('otls_view_form').action = "http://apps.det.wa.edu.au/otlsSearch/viewLearningObject/" + resourceId + "/";
	document.getElementById('otls_view_form').submit();
}
*/

function filterContext(context)
{
	if (context == 'Any')
	{
		hideElementRange('containerContext','div');
		showElement('noContextFilter');
	}
	else
	{
		showOnly('containerContext-' + context,'containerContext','div');
		hideElement('noContextFilter');
	}
}

function openContext(url)
{
	window.location = url;
}
