// MRM GILLESPIE - reclast.com

 //determines what flash file to call
function getFlashMovie(movieName){
  var isIE = navigator.appName.indexOf("Microsoft") != -1;
  return (isIE) ? window[movieName] : document[movieName];
}
 
//calls our function in our flash movie
function showFlashButtons(){
  //pass in the name of our flash movie
  //NOTE:  allowScriptAccess must be set to "always" for this to work
  getFlashMovie("reclastMain").showFlashButtons();
  
}
 
//wrapper function called by the Rovion flash player
//also called on 4th visit
function InPerson_onExit(){
	 showFlashButtons();
}
 
 