// ----- CMO Yachtmaster Syllabus ------

// Module: cmoymasyll.js	version 1.0

// Date 15.7.2002

// Author Rod Fletcher

// This script is Copyright ©1999 - 2002 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/ilsec010.jpg)');
			changeNNStyleBySelector('#week4', 'backgroundImage', 'url(../images/ilsec0516.jpg)');
			changeNNStyleBySelector('#week6', 'backgroundImage', 'url(../images/ilsec010s.jpg)');
			

		break;


		case '1IE5+':

			changeIEStyleBySelector('#week2', 'backgroundImage', 'url(../images/ilsec010.jpg)');
			changeIEStyleBySelector('#week4', 'backgroundImage', 'url(../images/ilsec0516.jpg)');
			changeIEStyleBySelector('#week6', 'backgroundImage', 'url(../images/ilsec010s.jpg)');
			
			if (screen.colorDepth > 16) {
				changeIEStyleBySelector('#head2', 'visibility', 'visible');
			}

		break;

	}
}
function nextSection(section) {

	location = 'cmoymasyll.html?' + domType + '#' + section;

}


// END

