function getFlashMovieObject(movieName)
{
  if (window.document[movieName]) 
  {
      return window.document[movieName];
  }
  if (navigator.appName.indexOf("Microsoft Internet")==-1)
  {
    if (document.embeds && document.embeds[movieName])
      return document.embeds[movieName]; 
  }
  else // if (navigator.appName.indexOf("Microsoft Internet")!=-1)
  {
    return document.getElementById(movieName);
  }
}

function hoverOn(whichTile){	
	var flashMovie=getFlashMovieObject("products");
	flashMovie.SetVariable("_root.handlers.szHoverOn", whichTile);
}

function hoverOff(whichTile){	
	var flashMovie=getFlashMovieObject("products");
	flashMovie.SetVariable("_root.handlers.szHoverOff", whichTile);
}

function clickItem(whichTile){	
	var flashMovie=getFlashMovieObject("products");	
	flashMovie.SetVariable("_root.handlers.szClick", whichTile);
}
