<!--
		/************************************************************
        **  Magnify, v1.1 - D.Leeson, Jun 2005.
        **  (c) 1999-2007, Carvel Solutions Ltd.
        **      All rights reserved.
        **  Please feel free to use this code, but if you do, make
        **  sure you display this copyright message with it.
        **  See http://www.carvelsolutions.co.uk for more details.
        ************************************************************/
		var doAlerts=false;

		function changeSheets(whichSheet){
		  whichSheet=whichSheet-1;
		  if(document.styleSheets){
			var c = document.styleSheets.length;
			if (doAlerts) alert('Change to Style '+(whichSheet+1));
			for(var i=0;i<c;i++){
			  if(i!=whichSheet){
				document.styleSheets[i].disabled=true;
			  }else{
				document.styleSheets[i].disabled=false;
			  }
			}
		  }
		}

// -->