<!--// ----------------------------------------------// StyleSwitcher functions written by Paul Sowden// http://www.idontsmoke.co.uk/ss/// - - - - - - - - - - - - - - - - - - - - - - -// For the details, visit ALA:// http://www.alistapart.com/stories/alternate/function setActiveStyleSheet(title) {  var i, a, main;  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {    if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) {      a.disabled = true;      if(a.getAttribute("title") == title) a.disabled = false;    }  }}function getActiveStyleSheet() {  var i, a;  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {    if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title") && !a.disabled) return a.getAttribute("title");  }  return null;}function getPreferredStyleSheet() {  var i, a;  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {    if(a.getAttribute("rel").indexOf("style") != -1       && a.getAttribute("rel").indexOf("alt") == -1       && a.getAttribute("title")       ) return a.getAttribute("title");  }  return null;}function createCookie(name,value,days) {  if (days) {    var date = new Date();    date.setTime(date.getTime()+(days*24*60*60*1000));    var expires = "; expires="+date.toGMTString();  }  else expires = "";  document.cookie = name+"="+value+expires+"; path=/";}function readCookie(name) {  var nameEQ = name + "=";  var ca = document.cookie.split(';');  for(var i=0;i < ca.length;i++) {    var c = ca[i];    while (c.charAt(0)==' ') c = c.substring(1,c.length);    if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);  }  return null;}window.onload = function(e) {  var cookie = readCookie("style");  var title = cookie ? cookie : getPreferredStyleSheet();  setActiveStyleSheet(title);}window.onunload = function(e) {  var title = getActiveStyleSheet();  createCookie("style", title, 365);}var cookie = readCookie("style");var title = cookie ? cookie : getPreferredStyleSheet();setActiveStyleSheet(title);// Membershipfunction getCookie(Name) {	var search = Name + "="	if (document.cookie.length > 0) { // if there are any cookies		offset = document.cookie.indexOf(search) 		if (offset != -1) { // if cookie exists 			offset += search.length 			// set index of beginning of value			end = document.cookie.indexOf(";", offset) 			// set index of end of cookie value			if (end == -1) 				end = document.cookie.length			return unescape(document.cookie.substring(offset, end))		} 	}}// Breadcrumbfunction lastGuide() {	var last_guide = "last_guide="	if (document.cookie.length > 0) { // if there are any cookies		offset = document.cookie.indexOf(last_guide) 		if (offset != -1) { // if cookie exists 			offset += last_guide.length 			// set index of beginning of value			end = document.cookie.indexOf(";", offset) 			// set index of end of cookie value			if (end == -1) 				end = document.cookie.length			return unescape(document.cookie.substring(offset, end))		} 		else { return ""; }	}	else { return ""; }}// Div togglefunction toggle( targetId ){  if (document.getElementById){  		target = document.getElementById( targetId );  			if (target.style.display == "none"){  				target.style.display = "";  			} else {  				target.style.display = "none";  			}  	}}function MM_reloadPage(init) {  //reloads the window if Nav4 resized  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();}MM_reloadPage(true);function browserCheck(){    var browsername = navigator.appName;    var version = parseInt(navigator.appVersion);    if( browsername == 'Netscape' && version == '4' ) alert( 'In order to view this website properly, please upgrade to Netscape 7 or greater.' );	}function MM_openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}function showPic (whichpic) { 	if (document.getElementById) { 		document.getElementById('placeholder').src = whichpic.href; 		if (whichpic.title) { 			document.getElementById('desc').childNodes[0].nodeValue = whichpic.title; 		} else { 			document.getElementById('desc').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue; 		} 		return false; 	} else { 		return true; 	} }//-->