// JavaScript DocumentaddLoadListener(init);function init(){  document.getElementById('popup_link').onclick = function()  {    var contact_us = makePopup(this.href, 600, 470, 'scroll');    return contact_us.closed;  };  return true;}function makePopup(url, width, height, overflow){  if (width > 640) { width = 600; }  if (height > 480) { height = 470; }	  if (overflow == '' || !/^(both)$/.test(overflow))  {    overflow = 'both';  }  var win = window.open(url, '',      'width=' + width + ',height=' + height      + ',scrollbars=' + (/^(scroll|both)$/.test(overflow) ? 'yes' : 'no')      + ',resizable=' + (/^(resize|both)$/.test(overflow) ? 'yes' : 'no')      + ',status=yes,toolbar=no,menubar=no,location=no'  );  return win;}function addLoadListener(fn){  if (typeof window.addEventListener != 'undefined')  {    window.addEventListener('load', fn, false);  }  else if (typeof document.addEventListener != 'undefined')  {    document.addEventListener('load', fn, false);  }  else if (typeof window.attachEvent != 'undefined')  {    window.attachEvent('onload', fn);  }  else  {    var oldfn = window.onload;    if (typeof window.onload != 'function')    {      window.onload = fn;    }    else    {      window.onload = function()      {        oldfn();        fn();      };    }  }}
