function publicFlash(nameDiv, nameFile, width, height){
	if(flashDetect(9)==true){
		document.getElementById(nameDiv).innerHTML = '<embed src="/img/'+ nameFile +'.swf" wmode="opaque" quality="high" bgcolor="#ffffff" width="'+ width +'" height="'+ height +'" scale="noscale" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
	}
	else {
		document.getElementById(nameDiv).innerHTML = '<img src="/img/flash_'+ nameFile +'.jpg" width="'+ width +'" height="'+ height +'"/>'; 
	}
}