/*
  This file changes the default document_domain if a meta tag named 'document_domain_change' is set to true
  or
  If the search param fixDomain is set to true
*/
var original_document_domain = document.domain;
document_domain_changed = false;
if(typeof document.getElementsByName('document_domain_change')[0] != 'undefined' && typeof document.getElementsByName('document_domain_change')[0].content != 'undefined' || document.location.search.indexOf('fixDomain=true') != -1 ){
  var wlhs = window.location.hostname.split('.');
  document.domain = wlhs[wlhs.length-2] +'.'+wlhs[wlhs.length-1];
  document_domain_changed = true;
}