Links
<%
'loop through all links
for i = 0 to (numLinks - 1)
'get link information
link = links.item(i).childNodes(xmlHref).text
filename = links.item(i).childNodes(xmlPath).text
linkText = links.item(i).childNodes(xmlTitle).text
description = links.item(i).childNodes(xmlDescription).text
linkType = links.item(i).childNodes(xmlLinkType).text
'open the image to get width and height
jpeg.open linksDir & "/" & filename
response.write ( "" &_
"" & endline & tab & tab )
next
%>