// JavaScript Document

var windowWidth, windowHeight;
		
		setTimeout(function(){

			if (self.innerHeight) {	// all except Explorer

				if(document.documentElement.clientWidth){

					windowWidth = document.documentElement.clientWidth; 

				} else {

					windowWidth = self.innerWidth;

				}

				windowHeight = self.innerHeight;

			} else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode

				windowWidth = document.documentElement.clientWidth;

				windowHeight = document.documentElement.clientHeight;

			} else if (document.body) { // other Explorers

				windowWidth = document.body.clientWidth;

				windowHeight = document.body.clientHeight;

			}
		
		
		
		  var so = new SWFObject("/FM/themes/FM09/flash/fm_pallini.swf","player",windowWidth,windowHeight,"7","#fff");
		  so.addParam("scale", "noscale");
		  so.addParam("quality", "auto");
		  so.setAttribute('redirectUrl', 'projects/');
		  
		  so.write("player");
		  
		  
			 
		  
		  },500);
		
			  
	