// JavaScript Document
function mostraFlash2(nome, largo, alto, altVar, flashV){
	var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	if(hasRightVersion) {  // if we've detected an acceptable version
		var oeTags = '<ob'+'ject type="application/x-shockwave-flash" data="c.swf?path='+nome+'" name="myFlash" '
		+ 'width="'+largo+'" height="'+alto+'">'
		+ '<param name="movie" value="c.swf?path='+nome+'" /><param name="quality" value="high" /><param name="BGCOLOR" value="#002D54">'
		+ '<param name="flashVars" value="'+flashV+'" />'
		+ '<\/object>';
		document.write(oeTags);   // embed the flash movie
	} else {  // flash is too old or we can't detect the plugin
		document.write(altVar);  // insert non-flash content
	}
}


