// JScript File

 function getClipsHTML() {
    var strHTML = ""
        + "<table style='table-layout:fixed; border-left:groove 2px #000080; border-top:groove 2px #000080; border-right:groove 2px #000080; border-bottom:groove 2px #000080;' width='100%' cellpadding='4'>"
        + "    <tr>"
        + "        <td align='center'>"
        + "            <div>"
        + "                <table style='border:outset 5px #006400;' width='100%' align='center'>"
        + "                    <tr>"
        + "                        <td align='center' style='font-size:large; background-color:#FFFFE0;'><b><i>Stills</i></b><br />"
        + "                            <iframe width='100%' height='200' src='Contents/HTML/clips/clips_pix.htm'>"
        + "                                 <p><b><i>Sorry! Your browser does not support iframes.</i></b></p>"
        + "				                </iframe>"
        + "                        </td>"
        + "                    </tr>"
        + "                </table>"
        + "                <br /><br />"
        + "                <table style='border:outset 5px #006400;' width='100%' align='center'>"
        + "                    <tr>"
        + "                        <td align='center' style='font-size:large; background-color:#FFFFE0;'><b><i>Videos</i></b><br />"
        + "                            <iframe width='100%' height='200' src='Contents/HTML/clips/clips_vid.htm'>"
        + "                                 <p><b><i>Sorry! Your browser does not support iframes.</i></b></p>"
        + "				                </iframe>"
        + "                        </td>"
        + "                    </tr>"
        + "                </table>"
        + "            </div>"
        + "        </td>"
        + "    </tr>"
        + "</table>"
            
    return strHTML;
}
        
