FormEmbeder = {
  frame_id: 'pipejump_fetcher_frame_123456',
  div_id: 'pipejump_fetcher_div_123456',
  frame_url_base: "",
  form_id: null
};
FormEmbeder.load = function(id, url) {
  this.form_id = id;
  this.frame_url_base = url + 'form_';
  var iframe_styles="width:440px;height:515px;border:0px;scroll:none;overflow:hidden;";
  $(document).write('<iframe id="pipejumpForm" src="'+this.frame_url(this.form_id)+'" style="'+iframe_styles+'"></iframe>');
};
FormEmbeder.frame_url = function(id) {
  return this.frame_url_base + id;
};
PipeJump = {};
PipeJump.insert_form = function(id, url) {
  FormEmbeder.load(id, url);
};
