Is it possible to customize the shape of popups in OpenLayers? For example, I am creating a pop-up using the following approach:
var popup = new OpenLayers.Popup.FramedCloud(
"popup",
OpenLayers.LonLat.fromString(feature.geometry.toShortString()),
null,
'<div style="color:#FF0000">'+feature.data.Name + '</br><a href="http://test.url">test.url</a>' + '</div>',
null,
true
);
This creates a popup with the following appearance:

Is it possible to change from the rounded corners and a curved 'connection' to a more square pop-up?

