function open_google_map_region_window (p_strLink){
	intWindow_Height = (500);

	objWindow_Map = window.open(p_strLink, "region_map", "width=550,height=" + intWindow_Height + ",left=100,top=50,scrollbars=no")

	if(objWindow_Map){
		objWindow_Map.focus();
		return false;
	} else {
		return true;
	}
}

function close_google_map_region_window (p_strLink){
	opener.location = p_strLink;
	opener.focus();
	return false;
}