function init() {
//alert('debug-1:start init');
  //changeBackground();
  //externalLinks();
  //cleanUp('provinces', clean_prov);
  //cleanUp('cities', clean_cities);
  //cleanUp('models', clean_models);
  // test if parser exists
  sndReq('/xml/test.xml');
  enable_output_escaping();
  enable_output_static();

  if(window.loadGoogleMap)
  {
     loadGoogleMap();
  }
  
  if (printit || pivprintit) window.print();

  if(ie && !ie7)document.getElementById('column0').style.height = document.body.offsetHeight-2+'px';
	if (document.getElementById('description')){
		collapseDescription()
	}
  //alert('debug-1:end init');
}

function enable_output_static() {
  if(!ie) {
    if (document.getElementById('static_content')) {
      document.getElementById('static_content').innerHTML = htmlDecode(document.getElementById('static_content').innerHTML);
    }
  }
}

