// JavaScript Document

// functions for www.vermessung-gedenk.de

// index
function goToURL(url) { 
  location.href = url;
}

function openWindow(path,breite,hoehe){
		
		var preview = window.open (path, 'name', 'width=' + breite + ', height=' + hoehe + ', status=0, toolbar=0, menubar=0, resizable=0, scrollbar=0, left='+(screen.width/2-breite/2)+',top='+(screen.height/2-hoehe/2)+',screenX='+(screen.width/2-breite/2)+',screenY='+(screen.height/2-hoehe/2));
		preview.focus();
}