// JavaScript Document
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 buyNow(prodID) {
	var flashMovie=getFlashMovieObject("flgFlash");
	//hide other girl buttons
	document.getElementById("divAltFooter").style.visibility = "visible";
	
	//alert("sending flash (" + flashMovie + ") product ID: " + prodID);
    flashMovie.SetVariable("/:activeProductID",prodID);
	flashMovie.TGotoLabel("/", "startCart");
	flashMovie.TPlay("/");
}