function openGoogleMap(actionName, form){
	var open_window = window.open("about:blank", 'google_map', "resizable=yes,scrollbars=yes,toolbar=yes,location=yes,menubar=yes,status=yes");
	open_window.focus();
	with(form){
		action = actionName;
		target = 'google_map';
		submit();
	}
	return false;
}
