var popupFormParticiper = {};
var popupFormVox = {};
var popupFormAmi = {};
var popupTermes = {};
var popupGallery = {};

// FR
		
popupFormParticiper.fr = {
	url:"/php/upload_step1.php",
	title:"",
	width: 900,
	height: 500
}

popupFormVox.fr = {
	url:"/php/vox_step1.php",
	title:"",
	width: 855,
	height: 480
}

popupFormAmi.fr = {
	url:"/php/sendtofriend.php",
	title:"",
	width: 900,
	height: 500
}

popupTermes.fr = {
	url:"/php/legal_fr.php",
	title:"",
	width: 900,
	height: 500
}

popupGallery.fr = {
	url:"/gallery/",
	title:"",
	width: 900,
	height: 500
}

// EN

popupFormParticiper.en = {
	url:"/php/upload_step1_en.php",
	title:"",
	width: 900,
	height: 500
}

popupFormVox.en = {
	url:"/php/vox_step1_en.php",
	title:"",
	width: 855,
	height: 480
}

popupFormAmi.en = {
	url:"/php/sendtofriend_en.php",
	title:"",
	width: 900,
	height: 500
}

popupTermes.en = {
	url:"/php/legal_en.php",
	title:"",
	width: 900,
	height: 500
}

popupGallery.en = {
	url:"/gallery/",
	title:"",
	width: 900,
	height: 500
}


// Thickbox Calls

function showForm(langue) {
	if(!langue) langue=lang;
	showPage(popupFormParticiper[langue].url, popupFormParticiper[langue].title, popupFormParticiper[langue].width, popupFormParticiper[langue].height);
}

function showTerms(langue) {
	if(!langue) langue=lang;
	showPage(popupTermes[langue].url, popupTermes[langue].title, popupTermes[langue].width, popupTermes[langue].height);
}

function showFormVox(langue) {
	if(!langue) langue=lang;
	showPage(popupFormVox[langue].url, popupFormVox[langue].title, popupFormVox[langue].width, popupFormVox[langue].height);
}


function showFormAmi(langue) {
	if(!langue) langue=lang;
	showPage(popupFormAmi[langue].url, popupFormAmi[langue].title, popupFormAmi[langue].width, popupFormAmi[langue].height);
}

function showGallery(id, langue) {
	if(!langue) langue=lang;
	showPage(popupGallery[langue].url+"?lang="+langue+"&id="+id, popupGallery[langue].title, popupGallery[langue].width, popupGallery[langue].height);
}

