function showYodios(id)
{
        var a1 = {
            divToPlaceIn: 'yodioHere',
            divToShowIn: 'yodioPlayerDiv',
            playerStyle: 2,
            autostart: true,
            noContentMessage: 'No Thoughts found yet, be the first to leave yours',
            apiKey: 38258,
            keywords: 'GNR',
            columns: 'title,created'
        };

        yodio.list.Create(a1, 'yodioList');
        yodio.list.yodioList.OnPlay = yodioPlayed;
}
        function hidePlayer() {
            var temp = document.getElementById("yodioPlayer");
            if (temp != null) {
                if (document.getElementById) {
                    temp.style.display = 'none';
                }
                else {
                    temp.display = 'none';
                }
                var temp1 = document.getElementById("yodioPlayerDiv");
                temp1.innerHTML = "";
            }
        }
        function yodioPlayed() {
            var temp = document.getElementById("yodioPlayer");
            if (temp != null) {
                if (document.getElementById) {
                    temp.style.display = 'inline';
                }
                else {
                    temp.display = 'inline';
                }
            }
        }

        function recordSomething(bookid) {
            var a = {
                apiKey: 38258,
                intro: 'Welcome to the GNR Recording Wizard<' + 'br/' + '><' + 'br/' + '>You will be taken through steps to record your thoughts.',
                whatThisIs: 'GNR and Reckless Road',
                titleText: 'What Is Your Name?',
                allowTitleChange: true,
                descriptionText: 'Tell a little about what you said?',
                allowDescriptionChange: true,
                images: [
            [882, 694, '23e3a586-8b8b-413a-a542-f7157dc2a2e7'],
            [882, 694, '11a24537-5f15-4e62-8cac-c39c5bab1de2'],
            [882, 694, 'c1e258a2-f552-4d31-8146-ed26b78cdd73'],
            [882, 694, '388f4be4-f7f2-4915-9461-4f89a77876b3'],
            [882, 694, '2e2b44a9-6876-4a85-bfed-58002b6e85c6'],
			[882, 694, 'e7646c82-13ca-4ba0-b077-3c657be5ef13'],
			[882, 694, 'adfd507b-1f1f-407b-9654-fceed933c00e'],
            [882, 694, '2167356d-9a6b-4947-a8df-b2fdb4073646'],
            [882, 694, '6e94dca7-a104-4544-8342-a5d9e8eb0d7c']
            ],
                pickImageText: 'Select the image you would like',
                creatingText: 'Creating your thoughts.',
                keywords: 'GNR',
                /*listToRefresh: 'yodioList'*/
            };

            yodio.iRecorder.Create(a);
        }