<!--
var window_options = "width=650px,height=400px,toolbar=0,status=0,scrollbars=1,resizable=1";
var current = "home";
function preload(page) {
    var pages = ['home', 
                'solo', 
                'ensembles', 
                'contact', 
                'calendar', 
                'links'];
    current = page;
    if ((current != 'success')&&(current != 'failed')) {
        document.getElementById(current).className = 'active';
    }
    
}
function highlight(element) {
  if (element.id != current) {
     element.className = 'hover';
  }
  return true;
}
function lowlight(element) {
  if (element.id != current) {
     element.className = 'link';
  }
  return true;
}
function openWindow(url) {
    RepWindow = window.open(url, "jeankellyharp.co.uk", window_options); 
}
//-->