<!--
//  Break email address into into components
function print_mailto(lhs, rhs, id)
{
  var atsig = "@";
  document.write("<A HREF=\"mailto");
  document.write(":" + lhs + atsig);
  if (id != "") document.write(rhs + "\">" + id + "<\/a>");
  else document.write(rhs + "\">" + lhs + atsig + rhs + "<\/a>");
}
//  Pretty status bar scroller
msg = "The Scottish Gliding Centre, Portmoak Airfield, Scotlandwell, Near Kinross, KY13 9JJ.  tel 01592-840543";
timeID = 30;
stcnt = 16;
wmsg = new Array(33);
        wmsg[0]=msg;
        blnk = "                                                               ";
        for (i=1; i<32; i++)
        {
                b = blnk.substring(0,i);
                wmsg[i]="";
                for (j=0; j<msg.length; j++) wmsg[i]=wmsg[i]+msg.charAt(j)+b;
        }
function wiper()
{
        if (stcnt > -1) str = wmsg[stcnt]; else str = wmsg[0];
        if (stcnt-- < -40) stcnt=31;
        status = str;
        clearTimeout(timeID);
        timeID = setTimeout("wiper()",100);
}
//wiper()
// -->
