
	//	###################################
	//	ONLINE SELECT
	
		// new window-script
		function xxxonline_select(id)
		{
	
			document.getElementById('online_continue_none').style.display = 'none';
			
			if ( id == 'ordinary' )		{ document.getElementById('online_continue_ordinary').style.display = '';			document.getElementById('online_ordinary').className = 'selected' }
			else						{ document.getElementById('online_continue_ordinary').style.display = 'none';		document.getElementById('online_ordinary').className = 'normal' }
	
			if ( id == 'daytime' )		{ document.getElementById('online_continue_daytime').style.display = '';			document.getElementById('online_daytime').className = 'selected' }
			else						{ document.getElementById('online_continue_daytime').style.display = 'none';		document.getElementById('online_daytime').className = 'normal' }
	
			if ( id == 'student' )		{ document.getElementById('online_continue_student').style.display = '';			document.getElementById('online_student').className = 'selected' }
			else						{ document.getElementById('online_continue_student').style.display = 'none';		document.getElementById('online_student').className = 'normal' }
	
			if ( id == 'retired' )		{ document.getElementById('online_continue_retired').style.display = '';			document.getElementById('online_retired').className = 'selected' }
			else						{ document.getElementById('online_continue_retired').style.display = 'none';		document.getElementById('online_retired').className = 'normal' }		
	
		}
	
		// original script
		function online_select(id)
		{
			if ( id != 'ordinary' )		{ document.getElementById('online_ordinary').className = 'normal' }		else { document.getElementById('online_ordinary').className = 'selected' }
			if ( id != 'daytime' )		{ document.getElementById('online_daytime').className = 'normal' }		else { document.getElementById('online_daytime').className = 'selected' }
			if ( id != 'student' )		{ document.getElementById('online_student').className = 'normal' }		else { document.getElementById('online_student').className = 'selected' }
			if ( id != 'retired' )		{ document.getElementById('online_retired').className = 'normal' }		else { document.getElementById('online_retired').className = 'selected' }
			
			document.getElementById('online_continue').className = 'normal';
		}
	
	
	//	###################################
	//	ONLINE CONTINUE
	
		function online_continue()
		{
			if ( document.getElementById('online_continue').className == 'disabled' )	{ return; }
			
			if ( document.getElementById('online_ordinary').className == 'selected' )	{ var businessUnit = '648'; var product = '397'; }
			if ( document.getElementById('online_daytime').className == 'selected' )	{ var businessUnit = '648'; var product = '401'; }
			if ( document.getElementById('online_student').className == 'selected' )	{ var businessUnit = '648'; var product = '400'; }
			if ( document.getElementById('online_retired').className == 'selected' )	{ var businessUnit = '648'; var product = '399'; }
			
			window.location.href='?id=147&businessUnit='+businessUnit+'&product='+product+'&newSession=1';
		}
		
				
	//	###################################
	//	BANNER CLICK
	
		function bannerClick(idname,id)
		{
			if ( idname == 'schedule' && document.getElementById('businessUnit') != null )
			{
				businessUnit = document.getElementById('businessUnit').value;

				if ( businessUnit != '' ) { window.location.href = '?id=' + id + '&label=' + document.getElementById('businessUnit').value; }
				else { window.location.href = '?id=' + id; }
			}
			else
			{
				window.location.href = '?id=' + id;
			}
		}
	
