//Site Root
var sRoot = "/al/mediaroom/";


//2006 PAB standard colours for hyperlinks - used for JavaScript links
function highlightText(x,y) {
	var oElement=document.getElementById(x)
	switch (y) {
		case 'on':
			oElement.style.color='#0066CC';
			oElement.style.textDecoration='none';
			break;
		case 'off':
			oElement.style.color='#0000FF';
			oElement.style.textDecoration='underline';					
			break;
	}			  
}