<?xml version="1.0"?>

<!DOCTYPE comic [
  <!ELEMENT comic         (comicname, author, strip)>
  <!ELEMENT comicname     (#PCDATA)>
  <!ELEMENT author        (authorname,url,email)>
  <!ELEMENT authorname    (#PCDATA)>
  <!ELEMENT url           (#PCDATA)>
  <!ELEMENT email         (#PCDATA)>
  <!ELEMENT strip         (title, date, description, panels)>
  <!ELEMENT title         (#PCDATA)>
  <!ELEMENT date          (#PCDATA)>
  <!ELEMENT description   (#PCDATA)>
  <!ELEMENT panels        (panel+)>
  <!ELEMENT panel         (scene, narration?, (speech|thought|shout|whisper|heave)*) >
  <!ELEMENT scene         (#PCDATA)>
  <!ELEMENT narration     (#PCDATA)>
  <!ELEMENT speech        (actor, words)>
  <!ELEMENT thought       (actor, words)>
  <!ELEMENT shout         (actor, words)>
  <!ELEMENT whisper       (actor, words)>
  <!ELEMENT heave         (actor, words)>
  <!ELEMENT actor         (#PCDATA)>
  <!ELEMENT words         (#PCDATA)> 
]>

<comic>
    <comicname>Witty Comics</comicname>
    <author>
        <authorname>komix46</authorname>
        <url>http://www.wittycomics.com/users/komix46</url>
        <email></email>
    </author>
    <strip>
        <title>CLEM AND JANE AD FROM THE DNC</title>
        <date>10-28-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>66</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>Do you fear this mans invention that they call atomic power? are we all in great confusion? Do we know the time or hour?</words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>When a terrible explosion may rain down upon our land leaving horrible destruction,blotting out the works of man.</words>
                </speech>
            </panel>
            <panel>
                <scene>66</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>Are you,are you ready for that great atomic power?Will you rise an meet your savior in the air?Will you shout or will you cry,when the fire rains from on high? Are you ready for that great atomic power???</words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>There is one way to escape and be prepared to meet the lord...when the mushroom of destruction falls, there is a shielding sword</words>
                </speech>
            </panel>
            <panel>
                <scene>66</scene>
                <narration></narration>
                <speech>
                    <actor>50</actor>
                    <words>He will surely stand beside you and you'll never taste of death for your soul will fly to safety, and eternal peace and rest.</words>
                </speech>
                <speech>
                    <actor>51</actor>
                    <words>Are you,are you ready for that great atomic power?Will you rise and meet yoursavior in the air? Will you shout or will you cry,when the fire rains from on high? Are you ready for that great atomic power?...Thank you...Go vote now, OK?</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

<!-- ComicML is based on ComicsML http://www.xml.com/pub/a/2001/04/18/comicsml.html -->

