function stretchMovie() {	
	if (self.innerWidth)
	{
		frameWidth = self.innerWidth;
		frameHeight = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientWidth)
	{
		frameWidth = document.documentElement.clientWidth;
		frameHeight = document.documentElement.clientHeight;
	}
	else if (document.body)
	{
		frameWidth = document.body.clientWidth;
		frameHeight = document.body.clientHeight;
	}
	else {
		
		frameWidth = 880;
		frameHeight = 600;
	}
		
	var so = new SWFObject("flash/interface.swf", "fotographiste", frameWidth, 750 * frameWidth / 880, "1", "#737373");
	so.addParam("scale", "noscale");
   	so.addParam("salign", "tl");
  	so.addVariable("movieWidth", frameWidth);
  	so.addVariable("movieHeight", 600 * frameWidth / 880);
  	so.addVariable("lang", movielang);
	so.write("flashcontent");
}

window.onload = function() { stretchMovie(); }
