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-------------*/

/*-----------------------holdlink()-------------*/
function holdlink(id) {	
		//document.getElementById(id).onmouseout='top_navigation';
		document.getElementById(id).className='sel';
		
	}
/*-----------------------holdlink()-------------*/

/*-----------------------POP UP Function()-------------*/

function req_consultation()

{
	var NewWin1;
	
	NewWin1=window.open("relocation_consultation.htm",'NewWin1','height=518,width=421,top=50,left=50,location=no,status=no,toolbar=no,menubar=no,scrollbars=no');
	NewWin1.focus();

}

function moves()

{
	var NewWin1;
	
	NewWin1=window.open("moves_popup.htm",'NewWin1','height=525,width=421,top=50,left=50,location=no,status=no,toolbar=no,menubar=no,scrollbars=no');
	NewWin1.focus();

}

function laboratory()

{
	var NewWin1;
	
	NewWin1=window.open("types_relocations.htm",'NewWin1','height=340,width=421,top=50,left=50,location=no,status=no,toolbar=no,menubar=no,scrollbars=no');
	NewWin1.focus();

}
/*-----------------------POP UP Function()-------------*/
