|
|
---|
|
Choose Alabama Outdoor Fireplacesfor your Backyard Barbecue... |
||||
This is the same Outdoor Fireplace that has been enjoyed for years by thousands of travelers in Alabama, New Hampshire, and Massachusetts. State Parks choose Alabama Outdoor Fireplaces time after time because their steel reinforced firebrick lasts and lasts, camper after camper. The pre-tempered link logs are heat resistant and virtually fireproof, and their permanent appearance is a natural complement to any wooded Alabama background. Folk from Alabama are choosing these Outdoor fireplaces by Precast for their own outdoor backyard barbecues because they have found the lightweight link-logs are easy to assemble, and require no cement or maintenance. And if you move, your Alabama Outdoor Fireplace can be moved too, with little fuss,. Use wood or charcoal, Precast is designed for both. Your new outdoor fireplace comes complete with adjustable grates and is available in a natural gray color So if this is your idea of a good time then call Alabama Precast Outdoor Fireplaces and get the Outdoor Fireplace you always dreamed of! |
Easy Assembly Zero Maintenance Durable Reinforced Firebrick Delivery
and Set up available throughout New England. |
|||
Come see our complete display at Dewhurst Lumber Co., 215 Bedford St. (Rt. 18), East Bridgewater, Ma. 02333. |
A service of netRelief, Inc. |
This site is a member of
The Smoke Ring Next - Skip Next - Next 5 - Prev - Skip Prev - Random Site Join the ring or browse a complete list of The Smoke Ring members If you discover problems with any of
The Smoke Ring sites, |
//$headline_style = 'news';
$headline_style = '';
$description_style = '';
$feed_url = 'http://rss.news.yahoo.com/rss/tech';
$show_detail = false;
$insideitem = false;
$tag = "";
$title = "";
$description = "";
$link = "";
$image = "";
$insideimage = false;
$max = 3;
$count = 0;
function render_news($feed_url, $showdetail, $headlinestyle, $detailstyle) {
global $show_detail, $headline_style, $detail_style, $max, $count, $insideitem, $insideimage;
$insideitem=false;
$insideimage=false;
$count = 0;
$show_detail = $showdetail;
$headline_style = $headlinestyle;
$detail_style = $detailstyle;
$xml_parser = xml_parser_create();
xml_set_element_handler($xml_parser, "startElement", "endElement");
xml_set_character_data_handler($xml_parser, "characterData");
$fp = @fopen($feed_url,"r");
// or die("Error reading RSS data.");
if ($fp) {
while ($data = fread($fp, 4096))
xml_parse($xml_parser, $data, feof($fp))
or die(sprintf("XML error: %s at line %d",
xml_error_string(xml_get_error_code($xml_parser)),
xml_get_current_line_number($xml_parser)));
fclose($fp);
} else {
echo 'Syndicated content not available';
}
echo '
free script from 4word systems
';
// Free up memory used by the XML parser
xml_parser_free($xml_parser);
}
function startElement($parser, $name, $attrs) {
global $insideitem, $tag, $title, $description, $link, $image, $insideimage;
if ($insideitem || $insideimage) {
$tag = $name;
}
if ($name == "ITEM" ) {
$insideitem = true;
}
if ($name == "IMAGE") {
$insideimage = true;
}
}
function endElement($parser, $name) {
global $insideitem, $tag, $title, $description, $link, $image, $insideimage, $show_detail, $headline_style, $detail_style, $count, $max;
if ($name == "URL") {
echo '
';
$insideimage=false;
$image="";
} else if ($name == "ITEM" && $count < $max) {
$count++;
printf('%s
',trim($link),trim($title));
if ($show_detail)
printf('%s
',trim($description));
else {
echo "
";
}
$title = "";
$description = "";
$link = "";
$insideitem = false;
} else if ($count >= $max) {
$title = "";
$description = "";
$link = "";
$insideitem = false;
}
}
function characterData($parser, $data) {
global $insideitem, $tag, $title, $description, $link, $image, $insideimage;
if ($insideimage) {
switch ($tag) {
case "URL":
$image .= $data;
break;
}
}
if ($insideitem ) {
switch ($tag) {
case "TITLE":
$title .= $data;
break;
case "DESCRIPTION":
$description .= $data;
break;
case "LINK":
if (!is_string($link)) $link="";
$link .= $data;
break;
}
}
}
?>