
function MarkerActivate( Value ){
  document.getElementById( 'Pin' + Value ).className='PinPoint Active';
  document.getElementById( 'Link' + Value ).className='LinkActive';
}
function MarkerDeActivate( Value ){
  document.getElementById( 'Pin' + Value ).className='PinPoint';
  document.getElementById( 'Link' + Value ).className='Link';
}

function MarkerSmallActivate( Value ){
  document.getElementById( 'Pin' + Value ).className='PinPointSmall SmallActive';
  document.getElementById( 'LinkSmall' + Value ).className='LinkSmallActive';
}
function MarkerSmallDeActivate( Value ){
  document.getElementById( 'Pin' + Value ).className='PinPointSmall';
  document.getElementById( 'LinkSmall' + Value ).className='LinkSmall';
}

function Change( Value ){
  document.getElementById('Kaart').className='Map ' + Value + ' Hover';
}

/*
 *  *
 *   * Main.js by Joachim Jansen | JDI - ICY
 *    *
 *     * 27-11-2007
 *      *
 *       */
var Map = null;
var OriginalTitle = null;
var PageLoaded = false;
var GemeenteID = null;
var insert1 = null;
var SuperHome = null;

var OpHome = false;

function SetPageTitleTo( Str ){
  var element = document.getElementById( 'MenuKop' );

  if ( element ) {

    if ( OriginalTitle == null ){
      var mk = document.getElementById( 'MenuKop' );
      if ( mk && mk.innerHTML ){
        OriginalTitle = mk.innerHTML;
      }
    }

    if ( OriginalTitle == null ){
      OriginalTitle = Str;
    }

    element.innerHTML = Str;
  }
}

function SetPageTitle(){
  var element = document.getElementById( 'MenuKop' );
  if ( element ) {
    OriginalTitle = element.innerHTML;
  }
}

function RestorePageTitle(){
  var element = document.getElementById( 'MenuKop' );
  if ( element ) {
    element.innerHTML = '';
  }
}


