if (document.observe) {
    document.observe('dom:loaded', function(e) {
        if($('mailerform')) {
            data = $('mailerform').getElements().collect(function(i){ if(i.name.match(/^data/)) return i.name.replace(/data\[/, '').replace(/\]/, ''); }).compact().uniq();
            h = document.createElement("input");
            h.name = 'ordered_input_names';
            h.type = 'hidden';
            h.value = data;
            $('mailerform').appendChild(h);
        }
    });
}

function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}

function playVideo(video,divReplace) {
	var so = new SWFObject("/assets/2120/video.swf", "video_player", "320", "252", "9", "#fff");
	so.addParam("quality", "high");
	so.addParam("wmode", "transparent");
	so.addVariable("pubcode", video);
	so.write(divReplace);
}
