<!-- 
function openWindowFootnotes(url, footnotes) {
	newWindow = window.open(url, footnotes, "width=400,height=400,left=0,top=0,location=no,menubar=no,status=no,scrollbars=yes,resizable=yes");
	if(window.focus) {
		newWindow.focus();
	}
}

function openWindowFeature(url, feature) {
	newWindow = window.open(url, feature, "width=650,height=500,left=0,top=0,location=no,menubar=no,status=no,scrollbars=yes,resizable=yes");
	if(window.focus) {
		newWindow.focus();
	}
}

function openWindowGoogle(url, googleMap) {
	newWindow = window.open(url, googleMap, "width=650,height=500,left=0,top=0,location=no,menubar=no,status=no,scrollbars=yes,resizable=yes");
	if(window.focus) {
		newWindow.focus();
	}
}
// -->