function openPop(url, w, h, iLeft, iTop, bScroll) {
	if (w==0) {
		var w=screen.width;
	}
	if (h==0) {
		var h=screen.height;
	}
    var options = "width=" + w + ",height=" + h + ",left=" + iLeft + ", top=" + iTop;
    options += "resizable=no,scrollbars=" + bScroll + ",status=no,";
    options += "menubar=no,toolbar=no,location=no,directories=no";
    var newWin = window.open(url, 'newWin', options);
    newWin.focus();
}

//
// VARIALBES POUR AFFICHER LE MENU EN BAS DE CHAQUE PAGE
//
function AfficherMenuBas(sReculerFolder) {
	var strMenuBasPage = '';
	strMenuBasPage += '<br>';
	strMenuBasPage += '<table width="100%" cellpadding="0" cellspacing="0">';
	strMenuBasPage += '<tr>';
	strMenuBasPage += '<td align="center" valign="top" bgcolor="#FFFFFF">';
	strMenuBasPage += '<a href="' + sReculerFolder + '101/default.htm" class="texteliensgras">La MRC&nbsp;&nbsp;</a><img src="' + sReculerFolder + 'imag_com/tiret.gif" border="0">';
	strMenuBasPage += '<a href="' + sReculerFolder + '102/default.htm" class="texteliensgras">&nbsp;&nbsp;Localisation&nbsp;&nbsp;</a><img src="' + sReculerFolder + 'imag_com/tiret.gif" border="0">';
	strMenuBasPage += '<a href="' + sReculerFolder + '103/default.htm" target="_self" class="texteliensgras">&nbsp;&nbsp;Mandat et r&ocirc;le de la MRC&nbsp;&nbsp;</a><img src="' + sReculerFolder + 'imag_com/tiret.gif" border="0">';
	strMenuBasPage += '<a href="' + sReculerFolder + '104/104a/104a.asp" target="_self" class="texteliensgras">&nbsp;&nbsp;Services&nbsp;&nbsp;</a><img src="' + sReculerFolder + 'imag_com/tiret.gif" border="0"> ';
	strMenuBasPage += '<a href="' + sReculerFolder + '105/default.htm" class="texteliensgras">&nbsp;&nbsp;Profil socio-&eacute;conomique</a>';
	strMenuBasPage += '</td>';
	strMenuBasPage += '</tr>';
	strMenuBasPage += '<tr>';
	strMenuBasPage += '<td align="center" valign="top" bgcolor="#FFFFFF">';
	strMenuBasPage += '<a href="' + sReculerFolder + '106/default.htm" class="texteliensgras">&nbsp;&nbsp;Communication&nbsp;&nbsp;</a><img src="' + sReculerFolder + 'imag_com/tiret.gif" border="0">';
	strMenuBasPage += '<a href="' + sReculerFolder + '107/default.htm" class="texteliensgras">&nbsp;&nbsp;Partenaires&nbsp;&nbsp;</a><img src="' + sReculerFolder + 'imag_com/tiret.gif" border="0">';
	strMenuBasPage += '<a href="' + sReculerFolder + '108/default.htm" class="texteliensgras">&nbsp;&nbsp;Galerie photos&nbsp;&nbsp;</a><img src="' + sReculerFolder + 'imag_com/tiret.gif" border="0">';
	strMenuBasPage += '<a href="' + sReculerFolder + '109/actualites.asp" target="_self" class="texteliensgras">&nbsp;&nbsp;Actualit&eacute;s</a>';
	strMenuBasPage += '</td>';
	strMenuBasPage += '</tr>';
	strMenuBasPage += '<tr>';
	strMenuBasPage += '<td align="center" valign="top" bgcolor="#FFFFFF">&nbsp;</td>';
	strMenuBasPage += '</tr>';
	strMenuBasPage += '</table>';

	return strMenuBasPage;
}
// 
// VARIABLES POUR AFFICHER LE TITRE EN BAS DE CHAQUE PAGE
//
var strTitreClient = '<span class="coordonnees">M.R.C. de Beauharnois-Salaberry, 660, rue Ellice, bureau 200, Beauharnois (Qu&eacute;bec) J6N 1Y1</span>';
var strTitreProducteur = '<span class="coordonnees">Réalisé par <a href="http://www.virtu-ose.net" style="color:#FFFFFF; text-decoration:underline;" target="_blank">Virtu-Ose</a></span>';
var strTitreBasDePage = strTitreClient + '<br>' + strTitreProducteur;

// Source: http://lists.evolt.org/archive/Week-of-Mon-20000207/096093.html
// Ferme la fenêtre enfant lorsque nous focussons sur la fenêtre parent sinon la fenêtre reste ouverte
var popupWin = null;
function openWinFocus(url,w,h){
 if (w == 0) {
	w = screen.width - 200;
 }
//alert(screen.width + ':' + w);
 var itop=Math.floor((screen.height-h)/2);
 var ileft=Math.floor((screen.width-w)/2);
 popupWin = window.open(url,"PopupHelp","width="+w+",height="+h+",top="+itop+",left="+ileft+",toolbar=0,resizable=1,menubar=1,scrollbars=1");
  window.name = 'opener';
 }
function scram() {
  if (popupWin != null && popupWin.open) popupWin.close();
 }
window.onfocus=scram;