//########################################################################################\\
//##  IIIX Webservice --- LAGALERIEDUMEUBLE.COM                                         ##\\
//##  Boîte Bleue - division de PortaSys inc.                                           ##\\
//##  © Copyright 2003, 2004, 2005, 2006, 2007, 2008 - NMEDIA, PortaSys inc.            ##\\
//##  info@X24ADM.com / info@BoiteBleue.com                                             ##\\
//########################################################################################\\

	function checkUncheckAll(theElement) {
     var theForm = theElement.form, z = 0;
	 for(z=0; z<theForm.length;z++){
      if(theForm[z].type == 'checkbox' && theForm[z].name != 'checkall'){
	  theForm[z].checked = theElement.checked;
	  }
     }
    }


	function openBrochure(newURL) {
		var yes = 1;
		var no = 0;

		var menubar = no;      // The File, Edit, View Menus
		var scrollbars = yes;   // Horizontal and vertical scrollbars
		var locationbar = no;  // The location box with the site URL
		var directories = no;  // the "What's New", "What Cool" links
		var resizable = yes;    // Can the window be resized?
		var statusbar = yes;    // Status bar (with "Document: Done")
		var toolbar = no;      // Back, Forward, Home, Stop toolbar
	
		redirectwindowprops = "width=" + (800) + ",height=" + (600) + ",left=" + (((screen.width-800)/2)-5) + ",top=" + (((screen.height-600)/2)-30) +"";

		redirectwindowprops += (menubar ? ",menubars" : "") +
		(scrollbars ? ",scrollbars" : "") +
		(locationbar ? ",location" : "") +
		(directories ? ",directories" : "") +
		(resizable ? ",resizable" : "") +
		(statusbar ? ",status" : "") +
		(toolbar ? ",toolbar" : "");

		window.open(newURL, 'Brochure', redirectwindowprops);
	}