function go_to_chapter()
{
	var theChapter;
	var theLink;
	theChapter = document.getElementById( "chapter" ).value;
	theLink = '#'+theChapter;
	document.location = theLink;
}

function go_to()
{
	var theJudet;
	var theLink;

	
	theJudet = document.getElementById( "judet" ).value;
	theLink = '../../judete/'+theJudet+'/index.html';
	//	alert (theLink);
	document.location = theLink;
}

function zoom(name_th, name) {
  if (
	document.harta.src.indexOf('th') > 0) {
	document.harta.width = document.harta.width * (100/75);
	document.harta.height = document.harta.height * (100/75);
    document.harta.src = name;
    }
  else {
 	document.harta.width = document.harta.width * (75/100)
	document.harta.height = document.harta.height * (75/100);
	document.harta.src = name_th;
    }
  }
