Hello
All,
I used this script
before for getting text... but now I'm trying to get the <img src from
the "only" <center> tag in the source code. Any one have any idea
what I am doing wrong? I attached the source code if that helps..
:~)
TIA for any
suggestions!
#!/usr/bin/perl -w
use strict;
use HTML::TokeParser::Simple;
use LWP::Simple;
use HTML::TokeParser::Simple;
use LWP::Simple;
my $url = ""http://www.rcpworksmarter.com/rcp/products/detail.jsp?rcpNum=1013">http://www.rcpworksmarter.com/rcp/products/detail.jsp?rcpNum=1013";
my $page = get($url)
or die "Could not load URL\n";
my $page = get($url)
or die "Could not load URL\n";
my $parser =
HTML::TokeParser::Simple->new(\$page)
or die "Could not parse page";
or die "Could not parse page";
my ($tag, $attr);
$tag = $parser->get_tag("center");
$attr = $tag->[1]->{"src"};
print $tag->[0], ": ", $attr, "\n";
$tag = $parser->get_tag("center");
$attr = $tag->[1]->{"src"};
print $tag->[0], ": ", $attr, "\n";
__end__
Brian
Volk
HP Products
317.298.9950 x1245
<!-- included common_jsp_include.jsf -->
<!-- included common_jsp_beans.jsf -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html lang="en">
<head>
<title>Rubbermaid Commercial Products</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="../includes/rcp.css">
<link rel="stylesheet" href="../includes/menus.css">
<script language="JavaScript" src="../js/browser_functions.js"></script>
<script language="JavaScript" src="../js/menu_functions.js"></script>
<style type="text/css">
<!--
table.tabular td {
padding-right: 8px;
}
#rightcol {
width: 55%;
}
#leftcol {
width: 40%;
}
-->
</style>
</head>
<body>
<!-- included common_jsp_beans.jsf -->
<div id="guestnav"><div id="inner"><a href="/rcp/"
onMouseOver="menuClose('');"><img src="/rcp/images/nav/home.gif" border="0"
width="79" height="29"></a><a href="/rcp/sitemap.jsp"
onMouseOver="menuClose('');"><img src="/rcp/images/nav/sitemap.gif" border="0"
width="95" height="29"></a><a href="/rcp/help.jsp"
onMouseOver="menuClose('');"><img src="/rcp/images/nav/help.gif" border="0"
width="93" height="29"></a><a href="javascript: ;"
onMouseOver="menuClose('prodmenu');menuOpen('prodmenu');"><img
src="/rcp/images/nav/products.gif" border="0" width="106" height="29"></a><a
href="/rcp/wheretobuy/index.jsp" onMouseOver="menuClose('');"><img
src="/rcp/images/nav/wheretobuy.gif" border="0" width="127" height="29"></a><a
href="#" onMouseOver="menuClose('contactmenu');menuOpen('contactmenu');"><img
src="/rcp/images/nav/contact.gif" border="0" width="105" height="29"></a><a
href="javascript: ;"
onMouseOver="menuClose('companymenu');menuOpen('companymenu');"><img
src="/rcp/images/nav/company.gif" border="0" width="102"
height="29"></a></div></div>
<!-- included common_jsp_beans.jsf -->
<div id="bottomcloser" onMouseOver="self.setTimeout('menuClose()', 200);">
<img src="/rcp/images/shim.gif" height="500" width="750">
</div>
<div id="prodmenu">
<ul class="dropdown"><li><a
href="/rcp/products/categorylist.jsp" class="navlink">Browse by
Category</a></li><li><a href="/rcp/products/facilitylist.jsp"
class="navlink">Browse by Facility</a></li><li><a
href="/rcp/products/rcp_advantages.jsp" class="navlink">RCP
Advantages</a></li><li><a href="/rcp/products/certifications.jsp"
class="navlink">Certifications</a></li><li><a href="/rcp/products/warranty.jsp"
class="navlink">Warranty</a></li></ul>
</div>
<div id="contactmenu">
<ul class="dropdown"><li><a
href="/rcp/contact/customerservice.jsp" class="navlink">Customer
Service</a></li><li><a href="/rcp/contact/locations.jsp"
class="navlink">Offices / Locations</a></li></ul>
</div>
<div id="companymenu">
<ul class="dropdown"><li><a href="/rcp/company/"
class="navlink">Company Profile</a></li><li><a href="/rcp/company/careers.jsp"
class="navlink">Careers</a></li><li><a href="/rcp/company/news.jsp"
class="navlink">News</a></li></ul>
</div>
<!-- included guestmenus.jsp -->
<!-- included navigation.jsp -->
<div id="logobar" onMouseOver="menuClose('');">
<div id="inner">
<!-- INTERNAL_ACTION: http://nawnvcisiis05/rcp/login.aspx -->
<!-- CUSTOMER_ACTION:
http://www.rcpworksmarter.com/rcp/j_security_check -->
<!-- HANSON_ACTION:
http://www.hansoninc.com/jobs/rcp_login/login-hanson.asp -->
<!-- ERROR_ACTION:
http://www.rcpworksmarter.com/rcp/login.jsp?code=login_error -->
<script language="JavaScript" type="text/javascript">
<!--
/*
* This function determines the action of the form and submits
it.
*/
function determineDestination()
{
var IS_EMPLOYEE = "is_employee";
var IS_CUSTOMER = "is_customer";
var TYPE_HANSON = "hanson";
var RCP_PREFIX = "rcp.";
var HANSON_PREFIX = "hanson.";
var INTERNAL_ACTION =
"http://nawnvcisiis05/rcp/login.aspx";
var CUSTOMER_ACTION =
"http://www.rcpworksmarter.com/rcp/j_security_check";
var HANSON_ACTION =
"http://www.hansoninc.com/jobs/rcp_login/login-hanson.asp";
var ERROR_ACTION =
"http://www.rcpworksmarter.com/rcp/login.jsp?code=login_error";
var userNamePrefix = "";
var username = ""
var periodIndex = "";
var userType = "";
username =
document.loginForm.j_username.value.toLowerCase(); // get the user's name and
convert it to lower case
if(username != "")
{
periodIndex = username.indexOf("."); // get
the index of a period in the user's name
if(periodIndex > -1) // if there is a period,
grab the prefix before the period to examine.
{
userNamePrefix =
username.substring(0,periodIndex+1);
}
if(userNamePrefix == RCP_PREFIX) // this is a
customer
{
userType = IS_CUSTOMER;
}
else if(userNamePrefix == HANSON_PREFIX) //
this is a Hanson employee
{
userType = TYPE_HANSON
}
else // this is an rcp employee
{
userType = IS_EMPLOYEE;
}
if(userType == IS_EMPLOYEE) // internal rcp
employee
{
document.loginForm.action =
INTERNAL_ACTION
document.loginForm.is_employee.value =
"true";
document.loginForm.is_customer.value =
"false";
}
else if(userType == IS_CUSTOMER) // external
rcp customer
{
document.loginForm.action =
CUSTOMER_ACTION;
document.loginForm.is_employee.value =
"false";
document.loginForm.is_customer.value =
"true";
}
else if(userType == TYPE_HANSON) // hanson
employee
{
document.loginForm.action =
HANSON_ACTION;
document.loginForm.is_employee.value =
"true";
document.loginForm.is_customer.value =
"false";
document.loginForm.login_id.value="hanson";
}
else // should be an unreachable condition
{
//error
document.loginForm.action =
ERROR_ACTION;
}
}
else
{
document.loginForm.action = ERROR_ACTION;
}
return true; // submit the form
}
//-->
</script>
<!-- cookie value: -->
<!-- included login_form_header.jsf -->
<table id="loginbox" cellspacing="0" border="0"
cellpadding="0">
<tr>
<td id="login">
<div
class="head"><b>ACCOUNT LOGIN</b></div>
<form name="loginForm"
method="POST" onSubmit="return determineDestination();"> <!-- See include file
/includes/login_header.jsp -->
<!-- Required
hidden form fields - Begin -->
<input type="hidden" name="WASReqURL"
value=""/> <!-- place the websphere request action in the form -->
<input type="hidden"
name="defaultLogin"
value="http://www.rcpworksmarter.com/rcp/j_security_check"/> <!-- place the
default login action in the form -->
<input type="hidden" name="is_employee"
value=""/> <!-- flag indicating whether this is an
employee -->
<input type="hidden" name="is_customer"
value=""/> <!-- flag indicating whether this is a
customer -->
<input type="hidden"
name="login_location" value="/rcp/products/detail.jsp"/> <!-- the page
the login request is coming from -->
<input type="hidden" name="login_id"
value="">
<input type="hidden" name="errorLogin"
value="http://www.rcpworksmarter.com/rcp/login.jsp?code=login_error"/>
<!-- the page the login request is coming from -->
<!-- Required hidden form fields - End
-->
<!-- included login_form_fields.jsf -->
<table
id="fields" cellspacing="0" border="0" cellpadding="0">
<tr>
<td align="right">Username: </td>
<td>
<input type="text" name="j_username" style="width: 110px"
tabindex="1"><!-- This field must be named j_username -->
<a href="/rcp/register.jsp">Register...</a>
</td>
</tr>
<tr>
<td align="right">Password: </td>
<td>
<input type="password" name="j_password" style="width: 60px"
tabindex="2"><!-- This field must be named j_password -->
<input type="image" name="submitIt" value="submit"
src="/rcp/images/go.gif"> <a href="/rcp/forgotpassword.jsp">I forgot...</a>
</td>
</tr>
</table>
</form>
</td>
<td id="search">
<div
class="head"><b>PRODUCT SEARCH</b></div>
<form method="GET"
action="/rcp/products/searchresults.jsp">
<input
type="text" name="search" value="" style="width: 120px" tabindex="2"><input
type="image" name="submitIt" value="submit" src="/rcp/images/go.gif"><br />
(product name,
SKU, or keyword)
</form>
</td>
</tr>
</table>
<a href="/rcp"><img
src="/rcp/images/RCPlogo.gif" width="235" height="78" border="0"></a>
</div>
</div>
<!-- included head.jsf -->
<div id="container">
<div id="navcolumn">
<div id="catalog">
<b>You are browsing our entire catalog!</b><br/>
<form action="/rcp/products/facility.jsp" method="get"
name="facilityForm" id="facilityForm">
Jump to a catalog for your facility:<br/>
<select name="facilityID" style="width:100%;
margin-top: 4px; font-size: 10px;" onChange="if
(document.forms['facilityForm'].elements['facilityID'].selectedIndex != 1)
{document.forms['facilityForm'].submit();}">
<option selected value="-1">General
Catalog</option>
<option value="0">-------------</option>
<option value="1">Airport</option>
<option value="2">Amusement Park</option>
<option value="3">Convenience Store</option>
<option value="4">Factory</option>
<option value="5">Hospital</option>
<option value="6">Hotel</option>
<option value="7">Office</option>
<option value="8">Restaurant/Bar</option>
<option value="9">School</option>
<option value="10">Stadium</option>
<option value="11">Supermarket</option>
<option value="165">Retail (In-Store)</option>
</select>
</form>
</div>
<div id="sidelinkbox">
<div id="sidelinks">
<h1>Product Categories</h1>
</div>
<ul>
<li><a
href="/rcp/products/category.jsp?categoryID=507">Agriculture</a></li>
<li><a
href="/rcp/products/category.jsp?categoryID=3">Cleaning</a></li>
<li><a
href="/rcp/products/category.jsp?categoryID=5">Food Service</a></li>
<li><a
href="/rcp/products/category.jsp?categoryID=2" class="selected">Material
Handling</a></li>
<li class="sub"><a
href="subcategory.jsp?categoryID=2&subcategoryID=331">Audio-Visual
Carts</a></li>
<li class="sub"><a
href="subcategory.jsp?categoryID=2&subcategoryID=336">Cleaning Carts</a></li>
<li class="sub"><a
href="subcategory.jsp?categoryID=2&subcategoryID=330">ESD Products</a></li>
<li class="sub"><a
href="subcategory.jsp?categoryID=2&subcategoryID=333">Home & Office
Carts</a></li>
<li class="sub"><a
href="subcategory.jsp?categoryID=2&subcategoryID=342">Ironing
Organizers</a></li>
<li class="sub"><a
href="subcategory.jsp?categoryID=2&subcategoryID=332">Platform Trucks</a></li>
<li class="sub"><a
href="subcategory.jsp?categoryID=2&subcategoryID=335">Restocking Trucks</a></li>
<li class="sub"><a
href="subcategory.jsp?categoryID=2&subcategoryID=338">Shelving</a></li>
<li class="sub"><a
href="subcategory.jsp?categoryID=2&subcategoryID=341">Step Stools</a></li>
<li class="sub"><a
href="subcategory.jsp?categoryID=2&subcategoryID=340">Storage
Containers</a></li>
<li class="sub"><a
href="subcategory.jsp?categoryID=2&subcategoryID=339">Storage Sheds</a></li>
<li class="sub"><a
href="subcategory.jsp?categoryID=2&subcategoryID=337" class="selected">Tilt
Trucks</a></li>
<li class="sub"><a
href="subcategory.jsp?categoryID=2&subcategoryID=329">Tool Organization &
Transport</a></li>
<li class="sub"><a
href="subcategory.jsp?categoryID=2&subcategoryID=334">Trollies /
Dollies</a></li>
<li class="sub"><a
href="subcategory.jsp?categoryID=2&subcategoryID=328">Utility & Service
Carts</a></li>
<li><a
href="/rcp/products/category.jsp?categoryID=253">Safety</a></li>
<li><a
href="/rcp/products/category.jsp?categoryID=4">Waste</a></li>
</ul>
</div>
</div>
<div id="maincolumn">
<h1>Structural Foam Tilt Trucks</h1>
<div class="dashhead" style="margin: 4px 0px 18px 0px;">
<a href="#products"><img
src="/rcp/images/arrow-down.gif" border="0" style="vertical-align:
middle;"></a> <b style="color: #D90808;">Scroll down to see 9 more products in
the Structural Foam Tilt Trucks group.</b>
</div>
<h2>1013 Structural Foam, Standard Duty
</h2>
<br/>
<div id="rightcol">
<p>Durable molded trucks handle heavy loads
with ease.</p>
<ul class="redsquare">
<li>Fits through standard commercial
doorways and onto elevators easily.</li>
<li>Non-marking casters reduce touch-up
cleaning.</li>
<li>Constant force design allows for
controlled dumping by one person.</li>
<li>Easy to clean and virtually
maintenance free.</li>
<li>Unique "steering wheel" handle
provides excellent maneuvering capability.</li>
<li>Optional domed lid available.</li>
<li>800 LB weight load</li>
</ul>
</div>
<div id="leftcol">
<center><img
src="/rcp/ObjectServer?table=Images&id=152"
oldsrc="/rcp/images/temp/2643_2645_2640_sku.jpg"></center>
<!--<a
href="/rcp/ObjectServer?table=Images&id=152" target="_blank"
onclick="window.open(this.href, 'zoom',
'width=720,height=720,scrollbars,resizable'); return false;"><img
src="../images/zoom.gif" border="0" width="11" height="11"></a> <a
href="/rcp/ObjectServer?table=Images&id=152" class="smalltype" target="_blank"
onclick="window.open(this.href, 'zoom',
'width=720,height=720,scrollbars,resizable'); return false;">View Larger
Image</a>-->
</div>
<br style="clear: right;"/>
<div id="rightcol">
<div class="dashhead">
<h3 class="red">Specifications</h3>
</div>
<table border="0" width="100%" cellspacing="0"
cellpadding="0">
<tr class="colheads">
<td> </td>
<td><b>U.S.</b></td>
<td><b>Metric</b></td>
</tr>
<!-- Measurement ID 1
<!-- Default Unit ID 2
-->
<tr>
<td><b>Length:</b></td>
<!-- 64.5 in -->
<td>64 1/2 in</td>
<td>163.8 cm</td>
</tr>
<!-- Measurement ID 1
<!-- Default Unit ID 2
-->
<tr>
<td><b>Width:</b></td>
<!-- 30.2 in -->
<td>30 1/4 in</td>
<td>76.8 cm</td>
</tr>
<!-- Measurement ID 1
<!-- Default Unit ID 2
-->
<tr>
<td><b>Height:</b></td>
<!-- 38 in -->
<td>38 in</td>
<td>96.5 cm</td>
</tr>
<!-- Measurement ID 3
<!-- Default Unit ID 4
-->
<tr>
<td><b>Mass Capacity
[Nom]:</b></td>
<!-- 1000 lb -->
<td>1000 lb</td>
<td>453.6 kg</td>
</tr>
<tr>
<td><b>Mass Capacity
[Max]:</b></td>
<td></td>
<td></td>
</tr>
<!-- Measurement ID 4
<!-- Default Unit ID 7
-->
<tr>
<td><b>Volume Capacity
[Nom]:</b></td>
<!-- 3/4 yd3 -->
<td> 3/4 yd3</td>
<td>0.6 m3</td>
</tr>
<tr>
<td><b>Volume Capacity
[Max]:</b></td>
<td></td>
<td></td>
</tr>
<tr>
<td><b>Volume Capacity
[Min]:</b></td>
<td></td>
<td></td>
</tr>
</table>
<br/>
<table border="0" width="100%" cellspacing="0"
cellpadding="0">
<tr>
<td><b>Pack Quantity:</b><td>
<td>1</td>
</tr>
<tr>
<td><b>List Price:</b><td>
<td>$804.44</td>
</tr>
<tr>
<td><b>Cartons Per
Pallet:</b><td>
<td>4</td>
</tr>
</table>
<p>
<b>Shipping Origin:</b>
Virginia, USA; Arizona, USA
<br/>
<b>Origin:</b>
</p>
<p>
<b>Material:</b>
<a href="#"
onClick="return false;" title="High-Density Polyethylene">HDPE</a>
<br/>
<b>Process:</b>
Structural Foam Molding
<br/>
</p>
<div class="dashhead">
<h3 class="red">Additional
Information:</h3>
</div>
<b>Technical Specifications:</b>
<a
href="/rcp/ObjectServer?table=PDFs&id=5&name=RCP_1013.PDF"
target="_blank">RCP_1013.PDF</a>
<br/>
<b>Chemical Resistance Guide:</b> <a
href="pdf/chem.pdf" target="_blank">chem.pdf</a><br/>
<a href="detail-faq.jsp?rcpNum=1013"
target="_blank" onclick="window.open(this.href, '',
'width=500,height=500,scrollbars,resizable'); return false;"><b>Frequently
Asked Questions</b></a><br/>
</div>
<br style="clear: left;"/>
<div id="leftcol">
<!-- Color Table Result Set
Record Count = 104 -->
<div class="dashhead">
<h3 class="red">Available Colors</h3>
</div>
<table border="0" width="100%" cellspacing="0"
cellpadding="2">
<tr>
<td><b>Color</b></td>
<td><b>Product UPC / <br>
Case UPC</b></td>
</tr>
<tr>
<td valign="top">GRAY</td>
<td valign="top">086876118407 /
<br> 086876118407</td>
</tr>
</table>
<br/>
<table border="0" cellspacing="0"
cellpadding="2">
<tr class="smalltype">
<td width="90" valign="top">
<img
src="/rcp/ObjectServer?table=Images&id=742" oldsrc="/rcp/images/swatches/B.gif"
oldwidth="37" oldheight="37" border="0"><br/>
Gray<br/>
GRAY</td>
<td width="90"
valign="top"></td>
</tr>
</table>
</div>
<br style="clear: both;"/>
<br/><a name="products"></a>
</div>
<br style="clear: both;"/>
</div>
<div id="tablecontainer" style="clear: right;">
<table border="0" cellpadding="2" cellspacing="0"
width="562" class="tabular">
<tr class="head">
<td colspan="10">Structural Foam Tilt
Trucks</td>
</tr>
<tr class="colheads">
<td nowrap>Item #</td>
<td>Description</td>
<td>Length</td>
<td>Width</td>
<td>Height</td>
<td>Mass Capacity</td>
<td>Volume Capacity</td>
<td>Material</td>
<td>Process</td>
<td>Price US</td>
</tr>
<tr valign="top" class="highlight smalltype">
<td nowrap>1011</td>
<td><a
href="detail.jsp?categoryID=2&subcategoryID=337&rcpNum=1011">Structural Foam,
Utility Duty</a></td>
<td>64.5 in</td>
<td>30.2 in</td>
<td>38 in</td>
<td>600 lb</td>
<td> 3/4 yd3</td>
<td>HDPE</td>
<td>Structural Foam Molding</td>
<td>$682.52</td>
</tr>
<tr valign="top" class="smalltype">
<td nowrap>1013</td>
<td><a
href="detail.jsp?categoryID=2&subcategoryID=337&rcpNum=1013">Structural Foam,
Standard Duty</a></td>
<td>64.5 in</td>
<td>30.2 in</td>
<td>38 in</td>
<td>1000 lb</td>
<td> 3/4 yd3</td>
<td>HDPE</td>
<td>Structural Foam Molding</td>
<td>$804.44</td>
</tr>
<tr valign="top" class="highlight smalltype">
<td nowrap>1028</td>
<td><a
href="detail.jsp?categoryID=2&subcategoryID=337&rcpNum=1028">Domed Lid for
1011, 1013</a></td>
<td>61.0 in</td>
<td>31.8 in</td>
<td>8 3/4 in</td>
<td></td>
<td></td>
<td>HDPE</td>
<td>Structural Foam Molding</td>
<td>$175.50</td>
</tr>
<tr valign="top" class="smalltype">
<td nowrap>9T13</td>
<td><a
href="detail.jsp?categoryID=2&subcategoryID=337&rcpNum=9T13">Structural Foam,
Utility Duty</a></td>
<td>53.1 in</td>
<td>26.9 in</td>
<td>33 7/8 in</td>
<td>450 lb</td>
<td> 1/2 yd3</td>
<td></td>
<td></td>
<td>$558.88</td>
</tr>
<tr valign="top" class="highlight smalltype">
<td nowrap>9T14</td>
<td><a
href="detail.jsp?categoryID=2&subcategoryID=337&rcpNum=9T14">Structural Foam,
Standard Duty</a></td>
<td>57.4 in</td>
<td>26.9 in</td>
<td>33 7/8 in</td>
<td>850 lb</td>
<td> 1/2 yd3</td>
<td></td>
<td></td>
<td>$709.58</td>
</tr>
<tr valign="top" class="smalltype">
<td nowrap>9T15</td>
<td><a
href="detail.jsp?categoryID=2&subcategoryID=337&rcpNum=9T15">Structural Foam,
Standard Duty</a></td>
<td>70.8 in</td>
<td>33.5 in</td>
<td>42 1/4 in</td>
<td>1250 lb</td>
<td>1 yd3</td>
<td></td>
<td></td>
<td>$996.24</td>
</tr>
<tr valign="top" class="highlight smalltype">
<td nowrap>9T16</td>
<td><a
href="detail.jsp?categoryID=2&subcategoryID=337&rcpNum=9T16">Structural Foam,
Heavy Duty</a></td>
<td>70.8 in</td>
<td>33.5 in</td>
<td>42 1/4 in</td>
<td>2100 lb</td>
<td>1 yd3</td>
<td></td>
<td></td>
<td>$1,197.60</td>
</tr>
<tr valign="top" class="smalltype">
<td nowrap>9T22</td>
<td><a
href="detail.jsp?categoryID=2&subcategoryID=337&rcpNum=9T22">Lid for 9T13 &
9T14</a></td>
<td>52.0 in</td>
<td>27.9 in</td>
<td>9 in</td>
<td></td>
<td> 1/2 yd3</td>
<td></td>
<td></td>
<td>$155.50</td>
</tr>
<tr valign="top" class="highlight smalltype">
<td nowrap>9T23</td>
<td><a
href="detail.jsp?categoryID=2&subcategoryID=337&rcpNum=9T23">Lid for 9T15 &
9T16</a></td>
<td>66.9 in</td>
<td>34.5 in</td>
<td>9 in</td>
<td></td>
<td>1 yd3</td>
<td></td>
<td></td>
<td>$195.50</td>
</tr>
</table>
<br/>
<table border="0" cellpadding="2" cellspacing="0"
width="562" class="tabular">
<tr class="head">
<td colspan="5">Consumables/Replacement
Parts</td>
</tr>
<tr class="colheads">
<td>No.</td>
<td>Fits</td>
<td>Description</td>
<!--
<td>Price US</td>
-->
</tr>
<tr valign="top" class="highlight smalltype">
<td nowrap>1011-L1</td>
<td>1011</td>
<td><!-- <a
href="detail.jsp?categoryID=2&subcategoryID=337&rcpNum=1011-L1"> -->12" dia.
(30.5 cm) Non-Marking Wheel<!-- </a> --></td>
<!--
<td>
-->
<!--
</td>
-->
</tr>
<tr valign="top" class="smalltype">
<td nowrap>1011-L2</td>
<td>1011</td>
<td><!-- <a
href="detail.jsp?categoryID=2&subcategoryID=337&rcpNum=1011-L2"> -->4" dia.
(10.2 cm) Non-Marking Plate Caster<!-- </a> --></td>
<!--
<td>
-->
<!--
</td>
-->
</tr>
<tr valign="top" class="highlight smalltype">
<td nowrap>1013-L1</td>
<td>1013</td>
<td><!-- <a
href="detail.jsp?categoryID=2&subcategoryID=337&rcpNum=1013-L1"> -->12" dia.
(30.5 cm) Wheel<!-- </a> --></td>
<!--
<td>
-->
<!--
</td>
-->
</tr>
<tr valign="top" class="smalltype">
<td nowrap>1013-L2</td>
<td>1013</td>
<td><!-- <a
href="detail.jsp?categoryID=2&subcategoryID=337&rcpNum=1013-L2"> -->4" dia.
(10.2 cm) Plate Caster<!-- </a> --></td>
<!--
<td>
-->
<!--
</td>
-->
</tr>
<tr valign="top" class="highlight smalltype">
<td nowrap>9T15-L1</td>
<td>9T15</td>
<td><!-- <a
href="detail.jsp?categoryID=2&subcategoryID=337&rcpNum=9T15-L1"> -->5" Swivel
Caster<!-- </a> --></td>
<!--
<td>
-->
<!--
</td>
-->
</tr>
<tr valign="top" class="smalltype">
<td nowrap>9T16-L1</td>
<td>9T16</td>
<td><!-- <a
href="detail.jsp?categoryID=2&subcategoryID=337&rcpNum=9T16-L1"> -->5" Swivel
Caster<!-- </a> --></td>
<!--
<td>
-->
<!--
</td>
-->
</tr>
</table>
<br style="clear: both;"/>
</div>
<div id="footer">
<div id="inner">
© 2004 Rubbermaid Commercial
Products | <a href="/rcp/terms_of_use.jsp">Terms Of
Use</a> | <a href="/rcp/privacy.jsp">Privacy
Policy</a> | <a href="mailto: [EMAIL
PROTECTED];">Feedback</a> | <a
href="http://www.newellco.com"><b>Newell
Rubbermaid</b></a> | <a
href="http://www.rubbermaidracing.com"><b>Rubbermaid Racing</b></a>
</div>
</div>
<!-- included footer.jsf -->
</body>
</html>
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>
