/* JavaScript functions */

function mailForm() {
 var form = document.forms['contact']; 
 var f = document.forms['contact'].elements['branche'];
 fi = f.selectedIndex;
 var fv = f.options[fi].value;
 addHidden(form,fv, "ex_cbranche");

}

function addHidden(form, value, name) {
	var i = document.createElement('input');
	i.type = 'hidden';
	i.name = name;
	i.value = value;
	form.appendChild(i);
	
}

function projex_popup(varurl, title, width, height) 
{
/*<?php
  if ($np) { ?>
  document.location = varurl;
  <?php } else { ?>
//  window.open(varurl, title, "width=800,height=600,scrollbars=yes");
*/
  window.open(varurl, "NewWindow",'width=' + width + ',height=' + height + ',scrollbars=yes');
 /* <?php } ?> */
}

