function goHere(theLink)
{
	var goTo = theLink+'.html';
	window.location = goTo;
}

function changeBgImage (image , id) {
  document.getElementById(id).style.backgroundImage = 'url('+image+')';
}



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 resetWidth(x) 
{

    var flash = getFlashMovieObject(x); 
	
var x,y;
if (self.innerHeight) // all except Explorer
{
	x = self.innerWidth;
	y = self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientHeight)
	// Explorer 6 Strict Mode
{
	x = document.documentElement.clientWidth;
	y = document.documentElement.clientHeight;
}
else if (document.body) // other Explorers
{
	x = document.body.clientWidth;
	y = document.body.clientHeight;
}


        
		
        flash.setAttribute("width", x);

   
        flash.setAttribute("height", y-40);
		
		



}
