/*------------------pull down menus-------------------*/

/*------------------pull down menus-------------------*/

/*--------------------------holdlink() ----------------------------*/
function holdlink(id){
	if(id=='home') document.getElementById('div_home').style.display='none';
	document.getElementById(id).className='selected_link';
	document.getElementById(id).onmouseout='selected_link';
}
/*--------------------------holdlink() ----------------------------*/

/*--------------------------consultation() ----------------------------*/

/*--------------------------consultation() ----------------------------*/

/*------------include function---------------------*/
function include_file(id, url) {
	
  var req = false;
  // For Safari, Firefox, and other non-MS browsers
  if (window.XMLHttpRequest) {
    try {
      req = new XMLHttpRequest();
    } catch (e) {
      req = false;
    }
  } else if (window.ActiveXObject) {
    // For Internet Explorer on Windows
    try {
      req = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
      try {
        req = new ActiveXObject("Microsoft.XMLHTTP");
      } catch (e) {
        req = false;
      }
    }
  }
 var element = document.getElementById(id);
  if (req) {
    // Synchronous request, wait till we have it all
	req.open('GET', url, false);
    req.send(null);
    element.innerHTML = req.responseText;
  } 
}
/*------------include function---------------------*/