PATH TO SL REALTIME INFORMATION
----------------------------------------------------------------
To figure out correct path to your station you have to go to
"http://realtid.sl.se/Default.aspx?epslanguage=SV". Search for
your favorite station, check type of transport. Important to
check only one transport type, the screenlet it's not designed
to handle a proper view of multiple transport types. When you
have made your choises and you see the realtime information in
your browser copy the path from browser path field. Start the
screenlet, rightclick on header, choose properties and paste the
path into field for webaddress (under tab Options - Options).

PARSING THE WEBSITE
-----------------------------------------------------------------
To catch needed information from web site the screenlets simply
read the HTML-code tag for tag. When a tag name match the parameters
from SLTags.xml the screenlets store the text inside into
a string for each transportation type. The main reason to store
tag parameters into an external xml file is to make it simple
when SL change the webdesign, which will happens soner or later.

SLTags.xml LAYOUT
------------------------------------------------------------------
Typical location for SLTags.xml is ~/.screenlets/SLRealTime/SLTags.xml
The parameters inside SLTags.xml should be stored as following
Where:
tagname = The name of the tag itself ieg span, ol, p
attributename = The name of tag's attribute ieg class, href
attributevalue = The value of attribute named by attributename
index = Sets how the information is stored inside the tag
	1=all information is inside only one tag
	2=Information is splited into 2 tags
	3=Information is splited into 3 tags
	4=......4 tags
	and so on

<SLTags>
	
	<!-- TODO: </info> -->
	
		<info>This page content the specification of SLTags.</info>
		
		<option name="Train_Info">
			<tagname>span</tagname>
			<attributename>class</attributename>
			<attributevalue>TrainCell Col1,TrainCell Col2,TrainCell</attributevalue>
			<index>3</index>
		</option>
		
		<option name="Bus_Info">
			<tagname>span</tagname>
			<attributename>class</attributename>
			<attributevalue>LineDesignation,DestinationName,DisplayTime</attributevalue>
			<index>3</index>
		</option>
		
		<option name="Metro_Info">
			<tagname>ol</tagname>
			<attributename>class</attributename>
			<attributevalue>clearfix</attributevalue>
			<index>1</index>
		</option>
		
		<option name="Header_Info">
			<tagname>span</tagname>
			<attributename>id</attributename>
			<attributevalue>ctl00_MainContentHolder_WebSignModule1_SiteName</attributevalue>
			<index>1</index>
		</option>
	
</SLTags>
