/*
 * Manipulate the layout and position of some elements in google map.
 */

var divs;
function changeGoogleMap() {

	divs = document.getElementById('map').getElementsByTagName('div');
	changeGoogleMapX(0);

}

function changeGoogleMapX() {

	// wait until the elements are loaded
	if(divs[17].style.height == '') {
		setTimeout("changeGoogleMapX()",10);
	}
	else {
		divs[16].style.left = "-11px";
		divs[16].style.top = "-53px";
		divs[17].style.display = "none";
	}
}

function openPopup (address, name, settings) {
  myWindow = window.open(address, name, settings);
  myWindow.focus();

  // myWindow.moveTo(screen.width/2,screen.height/2);

}
