<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=us-ascii">
<META content="MSHTML 6.00.2800.1106" name=GENERATOR></HEAD>
<BODY>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=843432317-28102008>Try this, to get all attributes for the 
feature:</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=843432317-28102008></SPAN></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2>function 
onFeatureSelect(feature) 
{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
<BR>&nbsp;&nbsp;&nbsp; var Msg="";<BR>&nbsp;&nbsp;&nbsp; for(var key in 
feature.attributes)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Msg 
+=&nbsp;<SPAN class=843432317-28102008>key + ":" + 
</SPAN>feature.attributes[key] + "\r\n";<BR>&nbsp;&nbsp;&nbsp; 
alert(Msg);<BR>}</FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=843432317-28102008>but perhaps you mean </SPAN></FONT><FONT face=Arial 
color=#0000ff size=2>city_name<SPAN class=843432317-28102008> instead of 
</SPAN>citiy_name<SPAN class=843432317-28102008>.</SPAN></FONT></DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN 
class=843432317-28102008></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial color=#0000ff size=2><SPAN class=843432317-28102008>Arnd 
Wippermann</SPAN></DIV>
<DIV dir=ltr align=left><BR></DIV></FONT><BR>
<DIV class=OutlookMessageHeader lang=de dir=ltr align=left>
<HR tabIndex=-1>
<FONT face=Tahoma size=2><B>Von:</B> indika85@gmail.com 
[mailto:indika85@gmail.com] <BR><B>Gesendet:</B> Dienstag, 28. Oktober 2008 
11:47<BR><B>An:</B> Eric Lemoine<BR><B>Cc:</B> Arnd Wippermann; 
users@openlayers.org<BR><B>Betreff:</B> Re: [OpenLayers-Users] WFS Layers, 
Markers, Popups<BR></FONT><BR></DIV>
<DIV></DIV>Thanks for the info. Got the featureselected event working.<BR><BR>I 
am having the issue of obtaining attributes of a feature.<BR><BR>This is how my 
code look like.<BR><BR>&nbsp;wfs_cities = new OpenLayers.Layer.WFS( "WFS 
Cities",<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
"<A 
href="http://localhost:8080/geoserver/wfs">http://localhost:8080/geoserver/wfs</A>",<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
{typename: 
"topp:cities",<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
extractAttributes : 
true<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
},<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
{styleMap: new 
OpenLayers.StyleMap({<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
"default": 
cities_symbolizer//,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
//"select" : 
cities_symbolizer_select<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
})}<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
);<BR><BR>&nbsp;var selectControl = new 
OpenLayers.Control.SelectFeature(<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
wfs_cities,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
{onSelect : 
onFeatureSelect});<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; function 
onFeatureSelect(feature) 
{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
alert(feature.attribute.citiy_name);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
}&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
map.addControl(selectControl);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
selectControl.activate();<BR><BR>The alert above does not show any output.<BR>By 
following this method is it necessary to do the following also to extract 
attribute information using GetFeature 
?<BR><BR>&nbsp;wfs_cities.events.register('featureselected', map, function (e) 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
document.getElementById('nodelist').innerHTML = 
"Loading";<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
var url =&nbsp; 
wfs_cities.getFullRequestString(<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
//SERVICE : 
'WFS',<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
REQUEST: 
"GetFeature",<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
EXCEPTIONS: 
"application/vnd.ogc.se_xml",<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
//BBOX: 
map.getExtent().toBBOX(),<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
//X: 
e.xy.x,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
//Y: 
e.xy.y,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
INFO_FORMAT: 
'text/html',<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
//QUERY_LAYERS: 
map.layers[2].params.LAYERS,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
PROPERTYNAME: 
'the_geom',<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
FEATURE_COUNT: 
50<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
//FILTER: '&lt;wfs:FeatureCollection xmlns:wfs="<A 
href="http://www.opengis.net/wfs">http://www.opengis.net/wfs</A>" xmlns:ogc="<A 
href="http://www.opengis.net/ogc">http://www.opengis.net/ogc</A>" service="WFS" 
version="1.1.0" xmlns:gml="<A 
href="http://www.opengis.net/gml">http://www.opengis.net/gml</A>"&gt;&lt;gml:featureMember&gt;&lt;ogc:Filter&gt;&lt;ogc:Contains&gt;&lt;ogc:PropertyName&gt;the_geom&lt;/ogc:PropertyName&gt;&lt;gml:Point&gt;&lt;gml:coordinates&gt;'+lonlatxy+'&lt;/gml:coordinates&gt;&lt;/gml:Point&gt;&lt;/ogc:Contains&gt;&lt;/ogc:Filter&gt;&lt;/gml:featureMember&gt;&lt;/wfs:FeatureCollection&gt;',<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
//WIDTH: 
map.size.w,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
//HEIGHT: 
map.size.h<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
},<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
"<A 
href="http://localhost:8080/geoserver/wfs">http://localhost:8080/geoserver/wfs</A>"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
);<BR><BR>Thanks in advance<BR><BR><BR>
<DIV class=gmail_quote>2008/10/28 Eric Lemoine <SPAN dir=ltr>&lt;<A 
href="mailto:eric.c2c@gmail.com">eric.c2c@gmail.com</A>&gt;</SPAN><BR>
<BLOCKQUOTE class=gmail_quote 
style="PADDING-LEFT: 1ex; MARGIN: 0pt 0pt 0pt 0.8ex; BORDER-LEFT: rgb(204,204,204) 1px solid">As 
  Arnd said you should use vectors styled with externalgraphic and<BR>the select 
  feature control to be able to select your markers and<BR>display a popup on 
  feature selection. To be notified on feature<BR>selection register a listener 
  on the layer's featureselected event.<BR>featureselected listeners receive an 
  object with a feature property<BR>referencing the selected feature. This is 
  shown in the example Arnd<BR>pointed you to. Eric<BR><BR>2008/10/28, Indika 
  Tantrigoda &lt;<A 
  href="mailto:indika85@gmail.com">indika85@gmail.com</A>&gt;:<BR>
  <DIV>
  <DIV></DIV>
  <DIV class=Wj3C7c>&gt; Thanks for the reply.<BR>&gt;<BR>&gt; It seems that 
  when I click within the marker, I get different lon, lat<BR>&gt; 
  values.<BR>&gt;<BR>&gt; Is it necessary to bind the markers to something 
  ?<BR>&gt;<BR>&gt; Also with the extractAttributes:true, how can I access the 
  attributes of the<BR>&gt; feature ?<BR>&gt;<BR>&gt; Regards,<BR>&gt; 
  Indika<BR>&gt;<BR>&gt; 2008/10/27 Arnd Wippermann &lt;<A 
  href="mailto:arnd.wippermann@web.de">arnd.wippermann@web.de</A>&gt;<BR>&gt;<BR>&gt;&gt; 
  &nbsp;you can use a select control for the wfs layer.<BR>&gt;&gt;<BR>&gt;&gt; 
  <A href="http://openlayers.org/dev/examples/select-feature-openpopup.html" 
  target=_blank>http://openlayers.org/dev/examples/select-feature-openpopup.html</A><BR>&gt;&gt;<BR>&gt;&gt; 
  If you have load the wfs layer with extractAttributes: true, then your 
  wfs<BR>&gt;&gt; data are saved in the attributes of the 
  features.<BR>&gt;&gt;<BR>&gt;&gt; Arnd Wippermann<BR>&gt;&gt;<BR>&gt;&gt; 
  &nbsp;------------------------------<BR>&gt;&gt; *Von:* <A 
  href="mailto:users-bounces@openlayers.org">users-bounces@openlayers.org</A> 
  [mailto:<A 
  href="mailto:users-bounces@openlayers.org">users-bounces@openlayers.org</A>]<BR>&gt;&gt; 
  *Im Auftrag von *Indika Tantrigoda<BR>&gt;&gt; *Gesendet:* Montag, 27. Oktober 
  2008 16:17<BR>&gt;&gt; *An:* OpenLayers users mailing list<BR>&gt;&gt; 
  *Betreff:* [OpenLayers-Users] WFS Layers, Markers, 
  Popups<BR>&gt;&gt;<BR>&gt;&gt; Hi,<BR>&gt;&gt; I have a wfs layer that 
  displays points on my map, using markers.<BR>&gt;&gt; I would like to have a 
  popup that displays data regarding the point which<BR>&gt;&gt; would get 
  activated for a click event.<BR>&gt;&gt;<BR>&gt;&gt; I tried the following 
  but, it seems to return all the data regarding the<BR>&gt;&gt; wfs layer, not 
  the single point, irrespective of<BR>&gt;&gt; where I click on the 
  map.<BR>&gt;&gt;<BR>&gt;&gt; &nbsp;wfs_cities.events.register('click', map, 
  function (e) {<BR>&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
  &nbsp; document.getElementById('nodelist').innerHTML =<BR>&gt;&gt; 
  "Loading...<BR>&gt;&gt; please wait...";<BR>&gt;&gt; &nbsp; &nbsp; &nbsp; 
  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var url = 
  &nbsp;map.layers[2].getFullRequestString(<BR>&gt;&gt; &nbsp; &nbsp; &nbsp; 
  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<BR>&gt;&gt; &nbsp; &nbsp; 
  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; REQUEST: 
  "GetFeature",<BR>&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; EXCEPTIONS: 
  "application/vnd.ogc.se_xml",<BR>&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BBOX: 
  map.getExtent().toBBOX(),<BR>&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; X: e.xy.x,<BR>&gt;&gt; &nbsp; 
  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
  Y: e.xy.y,<BR>&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
  &nbsp; &nbsp; &nbsp; &nbsp; INFO_FORMAT: 'text/html',<BR>&gt;&gt; &nbsp; 
  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
  QUERY_LAYERS: map.layers[2].params.LAYERS,<BR>&gt;&gt; &nbsp; &nbsp; &nbsp; 
  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FEATURE_COUNT: 
  50,<BR>&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
  &nbsp; &nbsp; &nbsp; WIDTH: map.size.w,<BR>&gt;&gt; &nbsp; &nbsp; &nbsp; 
  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; HEIGHT: 
  map.size.h<BR>&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
  &nbsp; &nbsp; },<BR>&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
  &nbsp; &nbsp; &nbsp; "<A href="http://localhost:8080/geoserver/wfs" 
  target=_blank>http://localhost:8080/geoserver/wfs</A>"<BR>&gt;&gt; &nbsp; 
  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; );<BR>&gt;&gt;<BR>&gt;&gt; 
  Any ideas how I can get around this ?<BR>&gt;&gt;<BR>&gt;&gt; Thanks in 
  advance.<BR>&gt;&gt;<BR>&gt;&gt; Regards,<BR>&gt;&gt; 
  Indika<BR>&gt;&gt;<BR>&gt;<BR></DIV></DIV></BLOCKQUOTE></DIV><BR></BODY></HTML>