function goTo( strLocation ) {
   /* A wrapper function */
   document.location.href="/track_record.html";
   return false;
}

function makeYfront() {
  var ifsrc = getLayer( 'yfront').innerHTML;
  var ftag = '<iframe name="biography" src="' + ifsrc +'" frameborder="0" marginheight="0" marginwidth="0"></iframe>';
  var imug = getLayer( 'profileScroll').innerHTML;
  var gspot = imug.split('profileEntry');
  if (gspot.length <= 4 ) {
    // shorten the height of the scrolly wolly
    getLayer('profileScroll').style.height = "100px";
  }
	
  getLayer( 'yfront').innerHTML = ftag;
  getLayer( 'yloader' ).style.display = "none;";
}

function getLayer( strLayerID ) {
	// returns the style element
	var whichLayer = strLayerID;
  if( document.getElementById ) // this is the way the standards work
    elem = document.getElementById( whichLayer );
  else if( document.all ) // this is the way old msie versions work
      elem = document.all[whichLayer];
  else if( document.layers ) // this is the way nn4 works
    elem = document.layers[whichLayer];
	
  return elem;
}


// redirect team.html to /team/uk/html (hacked)
var x = document.location.href.split('/');
if (x[x.length-1] == 'team.html') { document.location.href = '/team/uk.html'; }











