        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;
        }

	function startmusic(){
		var so2 = new SWFObject("/mp3/music.swf", "music", "1", "1", "8");
		so2.addParam("wmode", "transparent");
		so2.write("music");
		document.cookie ='music=on; expires=Thu, 1 Aug 2020 00:00:00 UTC; path=/';
	}
	function stopmusic(){
		var so2 = new SWFObject("", "music", "1", "1", "8");
		so2.addParam("wmode", "transparent");
		so2.write("music");
		document.cookie ='music=off; expires=Thu, 1 Aug 2020 00:00:00 UTC; path=/';

	}