function Movie(name,css){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" id="' +css+ '">');

	document.write('<param name="movie" value="' +name+ '.swf"/>');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="allowFullScreen" value="false" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="bgcolor" value="#ffffff" />');
	document.write('<embed src="' +name+ '.swf" quality="high"  ');
	document.write('pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" ');
	document.write('type="application/x-shockwave-flash" id="' +css+ '"></embed>');
	document.write('</object>');
}
if (typeof window.innerHeight!='undefined') {
	var theHeight = window.innerHeight;
}
if (document.documentElement && typeof document.documentElement.clientWidth!='undefined' && document.documentElement.clientHeight!=0) {
	var theHeight = document.documentElement.clientHeight;
}
else{
	var theHeight = document.body.clientHeight;
}

