function popUp(width, height, url) {
	size = 'width=' + width + ',height=' + height;
	googlemap = window.open(url,'googlemap',size+'resizable=yes,toolbar=no,menubar=no');
	if (googlemap) {
		googlemap.focus();
		return false;
	} else {
		return true;
	}
}
