// variable to store a window object
var popwin = null;
// a function to open a pop-up window
function OaklandsBandstand()
{
  window.location= "BandConcerts.htm";
}
// a function to open a pop-up window
function StLMusicEvents()
{
  if(popwin == null)
  popwin = window.open( "http://www.stleonardschurchhythekent.org/Concerts.html", "","top=30,left=150,width=900,height=900,scrollbars,status");
}
// a function to open a pop-up window
function StEanswytheEvents()
{
 window.location= "Music St Eanswythe.htm";
} 
// a function to open a pop-up window
function TowerEvents()
{
  if(popwin == null)
  popwin = window.open( "http://www.towertheatrefolkestone.co.uk/whatson.php", "","top=30,left=150,width=900,height=900,scrollbars,status");
}
// a function to open a pop-up window
function Trinity()
{
  if(popwin == null)
  popwin = window.open( "http://www.thetrinitybenefice-folkestone.org.uk/Friends/recitals 2010.html", "","top=30,left=150,width=900,height=900,scrollbars,status");
}
// a function to open a pop-up window
function hytheband()
{
  if(popwin == null)
  popwin = window.open( "http://www.hythetownband.org", "","top=30,left=150,width=900,height=900,scrollbars,status");
}
// a function to open a pop-up window
function shepgos()
{
  if(popwin == null)
  popwin = window.open( "http://www.hythe.supanet.com/choir.htm", "","top=30,left=150,width=900,height=900,scrollbars,status");
}
// a function to open a pop-up window
function folkchoral()
{
  if(popwin == null)
  popwin = window.open( "http://www.folkestonechoral.org.uk", "","top=30,left=150,width=900,height=900,scrollbars,status");
}
// a function to open a pop-up window
function fhos()
{
  if(popwin == null)
  popwin = window.open( "http://www.fhos.co.uk", "","top=30,left=150,width=900,height=900,scrollbars,status");
}
// a function to open a pop-up window
function fhods()
{
  if(popwin == null)
  popwin = window.open( "http://www.towertheatrefolkestone.co.uk", "","top=30,left=150,width=900,height=900,scrollbars,status");
}

// function to close a pop-up window
function close_popup()
{ 
    if(popwin != null){ popwin.close(); popwin = null; }
}



