// JavaScript Document
var myContFormEnvoi;
var myContThemeViewer;

var infoCont = new Object();

function initFlashContenu(theme, titre) {
	infoCont.theme = theme;
	infoCont.titre = titre;
	show_themeviwer();
	//show_form(12);
}

function show_form(idecard) {
	//getTrackFromFlash("formsender", idecard)
	myContFormEnvoi = new SWFObject("ecard-formsender.swf", "form_sender", "840", "450", "9", "#DCD8CA");
	myContFormEnvoi.addVariable("idecard", idecard);
	myContFormEnvoi.write("DIV_contenu_flash");
	//window.location.href = "#CB";
}

function show_themeviwer() {
	
	myContThemeViewer = new SWFObject("theme-viewer.swf", "themeviewer", "550", "150", "9", "#DCD8CA");
	myContThemeViewer.addVariable("themeid", infoCont.theme);
	myContThemeViewer.addVariable("titre", infoCont.titre);
	myContThemeViewer.write("DIV_contenu_flash");
}
