// ----- CMO Combined Syllabus ------

// Module: cmocomsyll.js	version 1.0

// Date 29.4.2004

// Author Rod Fletcher

// This script is Copyright ©1999 - 2004 Rod and Sue Fletcher.




var domType = location.search.substr(1);

if (domType == '') {
	location = '../../index.html';
}


function formatPage() {

	switch(domType) {



		case '1NN6+':

			changeNNStyleBySelector('#week2', 'backgroundImage', 'url(../images/ilsec020.jpg)');
			changeNNStyleBySelector('#week4', 'backgroundImage', 'url(../images/ilsec0311.jpg)');
			changeNNStyleBySelector('#week6', 'backgroundImage', 'url(../images/ilsec0316.jpg)');
			changeNNStyleBySelector('#week8', 'backgroundImage', 'url(../images/ilsec010s.jpg)');
			changeNNStyleBySelector('#week10', 'backgroundImage', 'url(../images/ilsec0316sa.jpg)');
			

		break;


		case '1IE5+':

			changeIEStyleBySelector('#week2', 'backgroundImage', 'url(../images/ilsec020.jpg)');
			changeIEStyleBySelector('#week4', 'backgroundImage', 'url(../images/ilsec0311.jpg)');
			changeIEStyleBySelector('#week6', 'backgroundImage', 'url(../images/ilsec0316.jpg)');
			changeIEStyleBySelector('#week8', 'backgroundImage', 'url(../images/ilsec010s.jpg)');
			changeIEStyleBySelector('#week10', 'backgroundImage', 'url(../images/ilsec0316sa.jpg)');
			
			if (screen.colorDepth > 16) {
				changeIEStyleBySelector('#head2', 'visibility', 'visible');
			}

		break;

	}
}
function nextSection(section) {

	location = 'cmocomsyll.html?' + domType + '#' + section;

}


// END
