<!-- Activate Cloaking Device

function breadcrumbs () {
	var sURL   = window.location.href;
	var sURLen = sURL.length;
	var letter = '';
	var word   = '';
	var output = '<P>';
	var therest = '';
	var now    = 0;
	var sl     = '/';
	var here   = 'Here.';

	for (i=0; i < sURLen; i++) {
		letter = sURL.substring(i,i+1);
		if (letter != sl) word += letter;
		if (((letter == sl) || (i == sURLen-1)) && (word != '')) {
//			process text found since last slash 		
			if ((word.indexOf('.htm') != -1) || (word.indexOf('.html') != -1)) {
				now = 0;
				if ( word == "index.html" || word == "index.htm" || word == "disclaimer.html") {
					now = 1; 
//					set a flag - this is a special case to force non-display of the subfolder when you're looking
//					at the index file for a particular sub area e.g. when looking at Coupe_Information/index.html
//					you only want the breadcrumbs to show Home > Coupe_Information
				}
			} else if (word == 'www.bmwcsregistry.org')  {
				now = 1;
				word = 'Home';
				output += '<a href="' + sURL.substring(0,i+1) + '">' + word + '<\/a>' + ' &gt; ';
				word = '';
			} else if (now  == 1) {
				therest += '<a href="' + sURL.substring(0,i+1) + '">' + word + '<\/a>' + ' &gt; ';
				word = '';
			} else word = '';
		}
	}

	if ( document.title != "") here = document.title;

	document.open();
	if ( (now == 1 &&  therest != "") || (word == "disclaimer.html") )
		document.write ( output + here);
	else if ( therest != "" ) {
		document.write(output + therest+ here);
	}
	document.write('<P>');
	document.close();
}

	// Deactivate Cloaking -->