// ----- CMO Courses ------

// Module: cmocourses.js

// Date 15.5.2001

// Author Rod Fletcher

// This script is Copyright ©1999 - 2001 Rod and Sue Fletcher.


var domType = location.search.substr(1);

if (domType == '') {
	location = '../../index.html';
}



function formatPage() {

	switch(domType) {




		case '1IE5+':

			
			if (screen.colorDepth > 16) {
				changeIEStyleBySelector('#head2', 'visibility', 'visible');
			}

		break;

	}
}


function nextSection(section) {

	location = 'cmocourses.html?' + domType + '#' + section;

}


//END
