// static-javascript-variable.js contains the following code
(function(){
  var url = "http://images.findlaw.com/widget/lawyer-form.html";
  var current_location = window.location.hostname;
  url += "?" + "host=" + current_location + "&width="+300 + "&key="+unique_key_each_host;
  // sample url generated : http://www.findlaw.com
  //document.write("<h3>Find a Lawyer</h3>");
  document.write("<iframe frameBorder='0' src='" + url + "'></iframe>");
})()

