function openWindow(url, width, height) {
	url = url || 'map.html';
	window.open(url,'Dunloe', 'location=no, menubar=no, toolbar=no, scrollbars=yes, status=no, resizeable=yes,width='+width+',height='+height+'');
}

function openWindow2(url) {
	url = url;
	window.open(url,'Dunloe', 'location=no, menubar=no, toolbar=no, scrollbars=yes, status=no, resizeable=yes, width=800, height=700');
	return false;
}

