/* --------------- STUDIO CONNECTIONS EXTERNAL JAVASCRIPT FILE -------------- */
/*                                                                            */
/*    Description: Footer generator for all pages when running in  Single     */
/*                 Page Mode or printing.                                     */
/*         Client: Cloud Studios - info@cloudstudios.com                      */
/*        Website: www.cloudstudios.com                                       */
/*         Author: Colin Abrahams - colin@studioconnections.net.au            */
/*      Copyright: 2008 Colin Abrahams, Studio Connections                    */
/*       Location: Wyong, NSW, Australia                                      */
/*        Version: SC-5.8                                                     */
/*   Last Updated: 2008-11-25                                                 */


// Hide Footer when viewing in Frames Mode
if (top.Upper) {
  document.write('<style type="text/css">\n'
               + '@media screen{.Footer{display: none;}}\n'
               + '</style>\n');
}

// Extra vertical space for print version or when extended CSS not supported
document.write('<div class="SpaceV">&nbsp;</div>\n');

document.write('<div class="Footer">'
             + '<table border="0" cellspacing="0" cellpadding="0"><tr>'
             + '<td width="300" valign="top">');

// Full Site button generated in Single Page Mode only, hidden when printing
if (!top.Upper) {
  document.write('<div class="FootLink">');
  if (document.getElementById) {
    document.write('<span class="MiniBDL">&nbsp;</span>');
  }
  document.write('<small><a '
               + 'onmouseover="window.BTSel ? BTSel(this) : null" '
               + 'onmouseout= "window.BTOut ? BTOut(this) : null" '
               + 'onmousedown="window.BTDep ? BTDep(this) : null" '
               + 'onclick="return window.BTClick ? BTClick(this) : true" '
               + 'title="Go to the full Cloud Studios website with frames" '
               + 'href="../../index.html" target="_top">'
               + '<span>Go to full site</span></a></small>');
  if (document.getElementById) {
    document.write('<span class="MiniBDR">&nbsp;</span>');
  }
  document.write('</div>');
}
document.write('</td>\n');

// Footer Logo
document.write('<td width="123" align="center"><div class="FootLogo">'
             + '<small><b>www.cloudstudios.com</b></small></div></td>\n');

document.write('<td width="300"></td></tr></table></div>\n');
