AppletTag applet= (AppletTag)node;
binUrlStr= applet.getAppletClass();
}
else if (node instanceof InputTag)
{
InputTag input= (InputTag)node;
// we check the input tag type for image
String strType= input.getAttribute("type");
if (strType != null && strType.equalsIgnoreCase("image"))
{
// then we need to download the binary
binUrlStr= input.getAttribute("src");
}
} else if (node instanceof LinkTag){
LinkTag link = (LinkTag)node;
if (link.getChild(0) instanceof ImageTag){
ImageTag img = (ImageTag)link.getChild(0);