function showFlash()
{


    var displayFlash;
    var viewportwidth;
    var viewportheight;
    var docBody;
    var docFlash;
    //alert('asdf');
    displayFlash = 'on';
    if (typeof window.innerWidth != 'undefined')
    {
         viewportwidth = window.innerWidth,
         viewportheight = window.innerHeight
    }

   // IE6 in standards compliant mode (i.e. with a valid doctype as the first line in the document)

    else if (typeof document.documentElement != 'undefined'
        && typeof document.documentElement.clientWidth !=
        'undefined' && document.documentElement.clientWidth != 0)
    {
          viewportwidth = document.documentElement.clientWidth,
          viewportheight = document.documentElement.clientHeight
    }

    // older versions of IE

    else
    {
          viewportwidth = document.getElementsByTagName('body')[0].clientWidth,
          viewportheight = document.getElementsByTagName('body')[0].clientHeight
    }
    docBody = document.getElementById('uubody');
    docFlash = document.getElementById('flash');



     // the more standards compliant browsers (mozilla/netscape/opera/IE7) use window.innerWidth and window.innerHeight


    //document.getElementById('flash').style.width = "200px";//viewportwidth;
    docFlash.style.height = viewportheight+"px";
    docFlash.style.width = viewportwidth+"px";
    docFlash.style.display = "block";

    docBody.style.height = viewportheight+"px";
    //document.getElementById('uubody').style.width = viewportwidth+"px";
    docBody.style.width = viewportwidth+"px";
    docBody.style.overflow = "hidden";
    //document.getElementById('uubody').style.zIndex = "10";

}
function closeFlash()
{

    document.getElementById('flash').style.display = "none";
    document.getElementById('uubody').style.height = "100%";
    document.getElementById('uubody').style.width = "100%";

}
