get_map(); } public function get_map_size() { global $opac_map_size_location_home_page; $size=explode("*",$opac_map_size_location_home_page); if(count($size)!=2) { $map_size="width:100%; height:240px;"; } else { if (is_numeric($size[0])) { $size[0] = $size[0] . "px"; } if (is_numeric($size[1])) { $size[1] = $size[1] . "px"; } $map_size= "width:".$size[0]."; height:".$size[1].";"; } return $map_size; } }