var dimages=new Array();
var numImages=7;

for (i=0; i<numImages; i++)
{
  dimages[i]=new Image();
}

dimages[0].src="headers/medstead_logo_darker.gif";
dimages[1].src="headers/xgolf_1.jpg";
dimages[2].src="headers/xswimming_1.jpg";
dimages[3].src="headers/xtennis_1.jpg";
dimages[4].src="headers/xfootball_1.jpg";
dimages[5].src="headers/xgolf_2.jpg";
dimages[6].src="headers/xtennis_2.jpg";

var curImage=-1;

function swapPicture()
{
  if (document.images)
  {
    var nextImage=curImage+1;
    if (nextImage>=numImages)
      nextImage=0;
    if (dimages[nextImage] && dimages[nextImage].complete)
    {
      var target=null;
      if (document.images.logoImage)
        target=document.images.logoImage;
      if (document.all && document.getElementById("logoImage"))
        target=document.getElementById("logoImage");

      target.src=dimages[nextImage].src;
      curImage=nextImage;

      setTimeout("swapPicture()", 8000);
    }
    else
    {
      setTimeout("swapPicture()", 500);
    }
  }
}

function openConsole( strURL )
{
  window.open( strURL, "PhysioConsole", "toolbar=1,scrollbars=1,location=1,resizable=1,status=1,menubar=1,width=700,height=550,top=20,left=20" );
}

function openMOT()
{
  window.open( "resources/motflyer.pdf", "MOTConsole", "toolbar=0,scrollbars=1,location=0,resizable=1,status=0,menubar=1,width=600,height=550,top=20,left=20" );
}

function showMultimap()
{
	openConsole( "http://www.multimap.com/map/browse.cgi?client=public&X=465000&Y=137500&width=500&height=300&gride=464959&gridn=137362&srec=0&coordsys=gb&db=pc&addr1=&addr2=&addr3=&pc=GU345NJ&advanced=&local=&localinfosel=&kw=&inmap=&table=&ovtype=&zm=0&out.x=11&out.y=10&scale=10000" );
}

function showGoogle()
{
	openConsole( "http://maps.google.co.uk/maps?q=GU34+5NJ&spn=0.131809,0.383886&hl=en" );
}
