﻿// JScript File
var commettants = new Array();

commettants[0] = new Array("BAUSCHLINNEMANN", "http://www.bauschlinnemann.de/");
commettants[1] = new Array("BECKER-KG", "http://www.becker-kg.de/");
commettants[2] = new Array("BS ROLLEN", "http://www.bs-rollen.de/");
commettants[3] = new Array("DEKODUR", "http://www.dekodur.de/");
commettants[4] = new Array("FROLI", "http://www.froli.com/");
commettants[5] = new Array("FSG-SCHAEFER", "http://www.fsg-schaefer.de/");
commettants[6] = new Array("GUY RAYMOND", "http://www.guy-raymond.co.uk/");
commettants[7] = new Array("KROENING-GMBH", "http://www.kroening-gmbh.de/");
commettants[8] = new Array("LEEUWENBURGH", "http://www.leeuwenburgh.com/");
commettants[9] = new Array("OJMAR", "http://www.ojmar.es/");
commettants[10] = new Array("POLYKARP", "http://www.polykarp.de/");
commettants[11] = new Array("SIFA", "http://www.sifa.de/");
commettants[12] = new Array("LAMILUX", "http://www.lamilux.de/");

function writeCommettants(IDs){
			
			var i=0;
			if (IDs.length>0){
				var x = IDs.split(",");
				document.write('	<p>');
				document.write('		...ou visitez le(s) site(s) de nos commettants: </p>');
				document.write ( '<ul>');
					for (i=0;i<x.length;i++){
						document.write ( '<li><a href="' + commettants[x[i]][1] + '" target="_blank">' + commettants[x[i]][0] + '</a></li>');
					}
				document.write ( '</ul>');
			}

}

SSS_faq = {
	init : function() {
		$('div.faq .answer').slideToggle('fast');
		$('div.faq .question').click(function() { SSS_faq.toggle(this) });
	},
	
	toggle : function(elt) {
		$(elt).toggleClass('active');
		$(elt).siblings('.answer').slideToggle('fast');
	}
}

$(function() { 
	SSS_faq.init();
});

function writeIntro(nom){
	if (nom.length>0){
		nom += ' de ' + nom;
	}

	document.write('<p>');
	document.write('	Pour plus de détails' + nom + ', contactez nous...');
	document.write('</p>');
	document.write('	<table>');
	document.write('		<tr>');
	document.write('			<td>tel</td>');
	document.write('			<td>+33.(0)1.34.91.22.20</td>');
	document.write('		</tr>');
	document.write('		<tr>');
	document.write('			<td>fax</td>');
	document.write('			<td>+33.(0)1.34.89.12.10</td>');
	document.write('		</tr>');
	document.write('		<tr>');
	document.write('			<td>mail</td>');
	document.write('			<td>');
	document.write('				<a href="mailtp:info@Agence-guyard.com">info@Agence-guyard.com</a>');
	document.write('			</td>');
	document.write('		</tr>');
	document.write('	</table>');
}

	
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=780,height=600,left = 310,top = 225');");
}
   