<!--
function makeArray(){
var args = makeArray.arguments;
	for(var i = 0; i < args.length; i++){
	this[i] = args[i];
	}
this.lenth = args.lenth;
}

var pages = new makeArray("Nos membres sur le web",
	"A.B.C. Extermination Inc. - Canton de Magog",
	"A.B.C. Gestion parasitaire - Montréal",
	"Abiosphère - Montréal",
	"Adalia Services Préventifs Ltée - St-Léonard",
	"Air-Neuf Extermination - Québec",	
	"B.B. Extermination Inc. - Trois-Rivières Ouest",
	"Cie d'Extermination Chomedey Inc. - Laval ",
	"Duchesneau & Fils Inc. - Boisbriand",
	"Exterminatech Inc. - Sherbrooke",
	"Extermination Belle-Île Enr. - Laval ",
	"Extermination Centrale - Montréal",
	"Extermination Desjardins - Chicoutimi",
	"Extermination Drummond - Trois-Rivières Ouest",
	"Extermination Joliette - Joliette",
	"Extermination Montréal - Montréal",
	"Extermination P.E. Tremblay/Lemieux Inc. - Jonquière",
	"Extermination Saint-Hubert - Saint-Hubert",
	"Extermination Terrebonne - Terrebonne",	
	"Extermination Trans-Métropole Ltée - Saint-Laurent",
	"Extermination Yves Surprenant - Montréal",
	"Groupe Abell",
	"Groupe Cameron Inc. - Sherbrooke",
	"Les Entreprises d'Extermination Maheu Ltée",
	"Maheu & Maheu Inc. - Québec",
	"Nord Extermination - Baie-Comeau",
	"Orkin/PCO",
	"Parasi-Tech - Laval",
	"Pestroy Inc. - Montréal ",
	"Pyrax extermination et consultants - Longueuil",
	"Services Denco Inc. - Sainte-Foy ",
	"R.M.B. Extermination Inc. - Laval ",
	"Veolia ES Services d’assainissement Inc. - Anjou");

var urls = new makeArray(" ",
	"http://www.abcextermination.qc.ca/",
	"http://www.exterminationabc.com/",
	"http://reseaubec.net/abiosphere/",
	"http://www.adalia.com/",
	"http://www.maxivert.com/",	
	"http://www.maxivert.com/index_fr.html?BBExtermination_fr",
	"http://www.exterminationchomedey.com/",
	"http://www.duchesneauetfils.com/",	
	"http://www.groupecameron.com/",
	"http://www.exterminationchomedey.com/",
	"http://www.exterminationcentrale.com/",
	"http://www.extermination-desjardins.qc.ca/",
	"http://www.maxivert.com/",
	"http://www.maxivert.com/",
	"http://www.maxivert.com/",
	"http://www.tremblaylemieux.com/",
	"http://www.maxivert.com/",
	"http://www.maxivert.com/",	
	"http://www.transmetropole.com/",
	"http://www.ysurprenant.com/",
	"http://www.abellgroup.com/",
	"http://www.groupecameron.com/",	
	"http://www.maison-maheu.com/magasin/index.htm",
	"http://www.maheu-maheu.com",
	"http://www.centre-dachats.com/sites/9/nordextermination/",
	"http://www.pco.ca/",
	"http://www.parasitech.com",
	"http://www.pestroy.ca/",
	"http://www.sympatico.ca/pyrax/",
	"http://www.extermination-desjardins.qc.ca/",
	"http://www.rmbextermination.pj.ca/",
	"http://www.VeoliaSE.com");

function goPage(form)
{
i = form.menu.selectedIndex;
if (i != 0)
	{
	window.location.href = urls[i];
	}
}
//-->
