/**
/	FONCTION GERANT L'AFFICHAGE DU CONTENU ALTERNATIF FLASH
/	PERMETTANT A L'INTERNAUTE DE TELECHARGER LE FLASHPLAYER
/
/**/
function getFlashText(lang,type){

		var text="";
		// traductions du texte de contenu alternatif
		switch(lang.toLowerCase()){
			case "fr": text="La configuration actuelle de votre navigateur Internet, ne vous permet pas de visualiser notre vid&eacute;o. Nous vous invitons &agrave; t&eacute;l&eacute;charger le &laquo;lecteur Flash&raquo;";
				break;
			case "en": text="Your current internet browser settings do not allow you to view our clip. Please install the 'Flash player'.";
				break;
			case "de": text="Ihre derzeitige Konfiguration erlaubt es Ihnen nicht, die Vorschau online anzusehen. Um das Video direkt auf Ihrem Internetbrowser anschauen zu k&ouml;nnen, bitten wir Sie den &bdquo;Flash Player&rdquo; herunterzuladen.";
				break;
			case "es": text="La configuraci&oacute;n actual de tu navegador no te permite visualizar correctamente el v&iacute;deo. Te invitamos a descargar gratuitamente &ldquo;Flash player&rdquo;";
				break;
			case "it": text="L'attuale configurazione del tuo browser non ti permette di visualizzare correttamente il nostro video. Ti invitiamo a scaricare gratuitamente &ldquo;Flash player&rdquo;.";
				break;
		
		}

			
		var src="";
		// Determination de la source
		switch(type.toLowerCase()){
			case "web": src="../_web/site/skin_vp/_common/images/gen_flash_btn.png";
				break;
			case "ext": src="../VP4/_web/site/skin_vp/_common/images/gen_flash_btn.png";
				break;
			case  "ba": src="../_web/site/skin_vp/_common/images/gen_flash_btn.png";
				break;
		}
		
	
		
		var theDiv = '';
		// ouverture de la div avec class css pour formatage de la div
		theDiv += '<div id="noFlashContent">';
		// logo VP
		theDiv += '<h5><span>vente-privee.com</span></h5>';
		// texte traduit selon la langue
		theDiv += '<p>'+text+'</p>';
		// image flashplayer plug-in
		theDiv += '<p><a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" title="Get Abode Flash Player"><img src="'+src+'" alt="Get Abode Flash Player" /></a></p>';
		// fermeture de la div
		theDiv += '</div>';	
		
		document.write(theDiv);
	
}
