  // ***************************************************************************
  // ///////////////////////////////////////////////////////////////////////////
  // ***************************************************************************
  //
  //  SOFTWARE: Sparkle Picnic Videos
  //   VERSION: 1.0
  //      FILE: /headers/java.js
  // COPYRIGHT: SparklePicnic.com
  // 
  // ***************************************************************************
  // ///////////////////////////////////////////////////////////////////////////
  // ***************************************************************************

     <!-- Begin FORM FOCUS v1.0
      function setFocus(id)
       {
        document.getElementById(id).focus();
       }
     // End -->

  // ***************************************************************************
  // ///////////////////////////////////////////////////////////////////////////
  // ***************************************************************************

     <!-- Begin SHOW/HIDE v1.0
      function showHide(id,state)
       {
        document.getElementById(id).style.display=""+state;
       }
     //-->

  // ***************************************************************************
  // ///////////////////////////////////////////////////////////////////////////
  // ***************************************************************************

     <!-- Begin ROLLOVER IMAGE v1.0
      function rollOver(img_name, img_src)
       {
        document[img_name].src = img_src;
       }
     //-->

  // ***************************************************************************
  // ///////////////////////////////////////////////////////////////////////////
  // ***************************************************************************

     <!-- Begin CHANGE COLOR v1.0
      function changeColor(id,maxid,ncolor,hcolor)
       {
        for(i=1; i<=maxid; i++)
            {
             document.getElementById(i).bgColor=""+ncolor;
            }
        document.getElementById(id).bgColor=""+hcolor;
       }
     //-->

  // ***************************************************************************
  // ///////////////////////////////////////////////////////////////////////////
  // ***************************************************************************

     <!-- Begin BIO BOX v1.0
      function bioBox(e,id,state)
       {
        if (!e) var e = window.event;
        if (e.pageX || e.pageY)
            {
             posx = e.pageX;
             posy = e.pageY;
            }
        else if (e.clientX || e.clientY)
            {
             posx = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
             posy = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
            }
        if(posx == ''||posx == 'undefined')
           {
            posx='0';
           }
        if(posy == ''||posy == 'undefined')
           {
            posy='0';
           }
        toppos = posy - 110;
        document.getElementById(id).style.position = 'absolute';
        document.getElementById(id).style.overflow = 'visible';
        document.getElementById(id).style.visibility = 'visible';
        document.getElementById(id).style.width = '1000px';
        document.getElementById(id).style.height = '220px';
        document.getElementById(id).style.top = toppos;
        document.getElementById(id).style.border = '1px solid #000000';
        document.getElementById(id).style.display = state;
       }
     //-->

  // ***************************************************************************
  // ///////////////////////////////////////////////////////////////////////////
  // ***************************************************************************

     <!-- Begin AJAX SHOW DIV v1.0
     function showDiv(DivId,DivPage,DivNum)
      {
       var xmlHttp = GetXmlHttpObject();
       if (!xmlHttp||xmlHttp==null)
           {
            alert ("Browser does not support HTTP Request")
            return
           }
       var url=""+DivPage+"?"+DivNum;
       xmlHttp.onreadystatechange=function()
        {
         if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
             {
              document.getElementById(DivId).innerHTML=xmlHttp.responseText;
             }
        }
       xmlHttp.open("GET", url, true);
       xmlHttp.send(null);
      }
     //  End -->

  // ***************************************************************************
  // ///////////////////////////////////////////////////////////////////////////
  // ***************************************************************************

     <!-- Begin AJAX GET XML/HTML OBJECT v1.0
     function GetXmlHttpObject()
      {
       var xmlHttp=null;
       try
          {
           // Firefox, Opera 8.0+, Safari
           xmlHttp=new XMLHttpRequest();
          }
       catch (e)
              {
               //Internet Explorer
               try
                  {
                   xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
                  }
               catch (e)
                      {
                       xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
                      }
              }
       return xmlHttp;
      }
     //  End -->

  // ***************************************************************************
  // ///////////////////////////////////////////////////////////////////////////
  // ***************************************************************************