Renewable Energy World Online - Renewable Energy News, Jobs, Events, Companies, and more close this window Creating a free account with RenewableEnergyWorld.com takes less than a minute. Account Benefits: Free weekly e-Newsletter News Products Events Jobs News commentary and much more... Register | Sign-In e-Newsletter | Podcast | Magazine | Expo News | Products | Companies | Events | Jobs setSearchTabs('story'); Home RE Tech Basics Overview Solar Energy Wind Power Hydrogen/Fuel Cells Bioenergy Hydropower Geothermal Energy Ocean Energy Green Power Our Company About Us Contact Us Advertising Information News News By Technology Solar Energy Wind Power Hydrogen/Fuel Cells Bioenergy Hydropower Geothermal Energy Ocean Energy Green Power Energy Efficiency News By Section Podcasts Magazine Industry PR RE Insider Columnists InFocus Video More Writers & Columnists e-Newsletter RSS Feeds Video Products Find Product Add Product Companies Find Company Add Company Events Find Event Webcasts Add Event Jobs Job Seekers Home Find a Job Post Resume My Account Terms & Conditions Employers Home Post a Job Search Resumes Rates & Packages Magazine Archives About Subscribe or Renew Advertising Information Expo North America Europe var columnBoxArray = [];var itemsPerColumnBox = 6;function buildColumnBoxObject(arrayIndexName, storyTypeId, imageType, baseLink) { var columnObj = new Object(); columnObj.storyTypeId = storyTypeId; columnObj.imageType = imageType; columnObj.stories = []; columnObj.baseLink = baseLink; columnObj.curIndex = 0; columnBoxArray[arrayIndexName] = columnObj;}function addColumnBoxStoryObj(arrayIndexName, storyTypeId, storyId, publishDate, title, image, author, volume, issue, authorId, intro) { var storyObj = new Object(); storyObj.publishDate = publishDate; storyObj.title = title; storyObj.image = image; storyObj.author = author; storyObj.volume = volume; storyObj.issue = issue; storyObj.storyId = storyId; storyObj.authorId = authorId; storyObj.intro = intro; var columnObj = columnBoxArray[arrayIndexName]; var storyArray = columnObj.stories; storyArray[storyArray.length] = storyObj; columnObj.stories = storyArray; columnBoxArray[arrayIndexName] = columnObj;}function setColumnBoxCurIndex(arrayIndexName, index) { var columnObj = columnBoxArray[arrayIndexName]; columnObj.curIndex = index; columnBoxArray[arrayIndexName] = columnObj;}buildColumnBoxObject('reinsider', '11', 'image', '/rea/news/reinsider/story?id=');buildColumnBoxObject('podcast', '19', 'podcast', '/rea/news/podcast?id=');buildColumnBoxObject('magazine', '23', 'image', '/rea/news/reworld/story?id=');buildColumnBoxObject('columnists', '21,15', 'author', '/rea/news/recolumnists/story?id=');buildColumnBoxObject('infocus', '5', 'image', '/rea/news/infocus/story?id=');buildColumnBoxObject('video', '0', 'image', '');buildColumnBoxObject('feature', '4', 'image', '/rea/news/story?id=');function showAnotherVideo(direction, arrayIndexName) { var toShowIndex; var columnObj = columnBoxArray[arrayIndexName]; if(direction == "prev") { toShowIndex = columnObj.curIndex + 1; } else if(direction == "next") { toShowIndex = columnObj.curIndex - 1; } var prevImage = document.getElementById(arrayIndexName + 'PrevButton'); var nextImage = document.getElementById(arrayIndexName + 'NextButton'); // toggle next button nextImage.onmouseover = function() {Tip('View next')}; if(toShowIndex > 0) { nextImage.src = '/images/template/column-button-right.gif'; nextImage.className = "activeButton" } else { nextImage.src = '/images/template/column-button-right-dis.gif'; nextImage.className = "disabledButton" nextImage.onmouseover = ""; } prevImage.onmousever = function() {Tip('View previous')}; // toggle prev button appropriately if(toShowIndex < itemsPerColumnBox - 1) { prevImage.src = '/images/template/column-button-left.gif'; prevImage.className = "activeButton" } else { prevImage.onmouseover = ""; prevImage.src = '/images/template/column-button-left-dis.gif'; prevImage.className = "disabledButton" } if(toShowIndex >= 0 && toShowIndex < itemsPerColumnBox && toShowIndex != columnObj.curIndex) { var container = document.getElementById(arrayIndexName + 'ColumnBox'); container.style.display = "none"; var storyArray = columnObj.stories; var curStoryObj = storyArray[columnObj.curIndex]; if(storyArray[toShowIndex] != null) { // story obj is already in array setColumnBoxCurIndex(arrayIndexName, toShowIndex); buildColumnBoxDisplay(arrayIndexName, columnObj, toShowIndex); } else { // story obj is not in array // need to make ajax call to retrieve next story var params = 'storyTypeId=' + columnObj.storyTypeId + '&imageType=' + columnObj.imageType + '&curStoryId=' + curStoryObj.storyId + '&ieSucks=' + IeSucksUrlDate(); new Ajax.Request('/rea/ajaxcolumnbox', { method: 'get', parameters: params, onSuccess: function(transport) { var responseXml = transport.responseXML; // get base xml element - use to get the three values we need to process var xmlBase = responseXml.getElementsByTagName("story")[0]; var storyId = parseInt(xmlBase.getElementsByTagName("storyId")[0].firstChild.nodeValue); var imagePath = trim(xmlBase.getElementsByTagName("image")[0].firstChild.nodeValue); var headline = trim(xmlBase.getElementsByTagName("headline")[0].firstChild.nodeValue); var publishDate = trim(xmlBase.getElementsByTagName("publishDate")[0].firstChild.nodeValue); var author = trim(xmlBase.getElementsByTagName("author")[0].firstChild.nodeValue); var volume = trim(xmlBase.getElementsByTagName("volume")[0].firstChild.nodeValue); var issue = trim(xmlBase.getElementsByTagName("issue")[0].firstChild.nodeValue); var authorId = trim(xmlBase.getElementsByTagName("authorId")[0].firstChild.nodeValue); if(arrayIndexName == "feature") var intro = trim(xmlBase.getElementsByTagName("intro")[0].firstChild.nodeValue); else var intro = ""; addColumnBoxStoryObj(arrayIndexName, columnObj.storyTypeId, storyId, publishDate, headline, imagePath, author, volume, issue, authorId, intro); setColumnBoxCurIndex(arrayIndexName, toShowIndex); buildColumnBoxDisplay(arrayIndexName, columnObj, toShowIndex); } }); } }}var curFeatureIndex = 0;var continueFeatureSlide = true;function doFeatureSlide() { if(continueFeatureSlide) { var ind = curFeatureIndex + 1; if(ind == 5) ind = 0; doFeatureThumb(ind); }}function doFeatureThumb(storyIndex) { //var container = document.getElementById('featureColumnBox'); //container.style.display = "none"; storyIndex = parseInt(storyIndex); var columnObj = columnBoxArray['feature']; var storyArray = columnObj.stories; var curStoryObj = storyArray[storyIndex]; var curThumbImg = document.getElementById("featureImg" + curFeatureIndex); curThumbImg.style.border = "1px solid #dcdcdc"; curFeatureIndex = storyIndex; var thumbImg = document.getElementById("featureImg" + storyIndex); thumbImg.style.border = "1px solid orange"; buildColumnBoxDisplay('feature', columnObj, storyIndex);}function buildColumnBoxDisplay(arrayIndexName, columnObj, storyIndex) { var storyArray = columnObj.stories; var storyObj = storyArray[storyIndex]; if(arrayIndexName == 'video') { var storyLink = storyObj.author; } else { var storyLink = columnObj.baseLink + storyObj.storyId; } var imageLink = document.getElementById(arrayIndexName + 'ColumnImageLink'); imageLink.href = storyLink; if(arrayIndexName == 'video') { imageLink.removeChild(imageLink.childNodes[0]); imageLink.innerHTML = storyObj.image; } else { var theImage = document.getElementById(arrayIndexName + 'ColumnImage'); theImage.src = storyObj.image; } if(arrayIndexName != 'magazine') { var publishDateDiv = document.getElementById(arrayIndexName + 'ColumnPublishDate'); publishDateDiv.removeChild(publishDateDiv.childNodes[0]); publishDateDiv.appendChild(document.createTextNode(storyObj.publishDate)); } else { var volNumContainer = document.getElementById(arrayIndexName + 'ColumnVolumeNumber'); volNumContainer.removeChild(volNumContainer.childNodes[0]); volNumContainer.appendChild(document.createTextNode(storyObj.volume)); var volIssContainer = document.getElementById(arrayIndexName + 'ColumnIssueNumber'); volIssContainer.removeChild(volIssContainer.childNodes[0]); volIssContainer.appendChild(document.createTextNode(storyObj.issue)); } if(arrayIndexName == 'reinsider') { var authorContainer = document.getElementById(arrayIndexName + 'ColumnAuthor'); authorContainer.removeChild(authorContainer.childNodes[0]); authorContainer.appendChild(document.createTextNode(storyObj.author)); } if(arrayIndexName == 'feature') { var introContainer = document.getElementById(arrayIndexName + 'ColumnIntro'); introContainer.removeChild(introContainer.childNodes[0]); introContainer.appendChild(document.createTextNode(limitString(storyObj.intro, 34, " "))); var authorContainer = document.getElementById(arrayIndexName + 'ColumnAuthor'); if(storyObj != null && storyObj.author != "" && storyObj.author != "xxx") { authorContainer.style.display = "block"; if(authorContainer.childNodes[0] != null) authorContainer.removeChild(authorContainer.childNodes[0]); authorContainer.appendChild(document.createTextNode(storyObj.author)); } else { authorContainer.style.display = "none"; } document.getElementById('featureColumnContinue').href = storyLink; } if(arrayIndexName == 'columnists') { var fNameContainer = document.getElementById('columnistsColumnAuthorFirst'); var lNameContainer = document.getElementById('columnistsColumnAuthorLast'); var nameLinkContainer = fNameContainer.parentNode; nameLinkContainer.href = "/rea/author?id=" + storyObj.authorId; fNameContainer.removeChild(fNameContainer.childNodes[0]); lNameContainer.removeChild(lNameContainer.childNodes[0]); var namesArray = storyObj.author.split(" "); var numNamesArray = namesArray.length; var fName = "", lName = ""; for(var i = 0; i < numNamesArray; i++) { if(i == numNamesArray - 1) lName = namesArray[i]; else fName += namesArray[i] + " "; } nameLinkContainer.title = "View all articles by " + fName + lName; fNameContainer.appendChild(document.createTextNode(fName)); lNameContainer.appendChild(document.createTextNode(lName)); } var titleLink = document.getElementById(arrayIndexName + 'ColumnTitleLink'); titleLink.href = storyLink; titleLink.removeChild(titleLink.childNodes[0]); titleLink.appendChild(document.createTextNode(storyObj.title)); var container = document.getElementById(arrayIndexName + 'ColumnBox'); Effect.Appear(container, {duration:1}); } Green Collar Job Training Program Focuses on At-risk Youth 2008-10-10 Audra Clark, News Intern The city of Santa Fe has found that two of its problems, a high percentage of high school drop outs and a lack of green collar workers, have the same solution -- a... continue addColumnBoxStoryObj("feature", 4, 53800, '2008-10-10', 'Green Collar Job Training Program Focuses on At-risk Youth', '/assets/images/story/2008/10/10/1332-green-collar-job-training-program-focuses-on-at-risk-youth.jpg', "Audra Clark, News Intern", "", "", "", 'The city of Santa Fe has found that two of its problems, a high percentage of high school drop outs and a lack of green collar workers, have the same solution -- a green collar job training program that recruits from a pool of at risk youths.'); addColumnBoxStoryObj("feature", 4, 53805, '2008-10-09', 'Technological Innovation Driving Renewed Interest in Geothermal Energy', '/assets/images/story/2008/10/9/1332-geothermal-renaissance-driven-by-technological-innovation.jpg', "Stephen Lacey, Staff Writer", "", "", "", 'In the past, geothermal energy might have been called the underdog of renewable energy. But if one were to characterize the industry based on current growth and technological innovation, it might be more accurate to call geothermal the rising star of the industry.'); addColumnBoxStoryObj("feature", 4, 53784, '2008-10-08', 'Addressing the Variability Factor: Can Wind Power Reliably Be Part of the Electricity Mix?', '/assets/images/story/2008/10/8/1332-addressing-the-variability-factor--can-wind-power-reliably-be-part-of-the-electricity-mix.jpg', "Michael Goggin, AWEA", "", "", "", 'A new AWEA fact sheet aims to promote greater understanding of one of the most complex and frequently confused aspects of wind energy: how wind and other variable energy sources are reliably integrated into electric grid operations.'); addColumnBoxStoryObj("feature", 4, 53742, '2008-10-07', 'Solar Updraft Towers: Variations and Research', '/assets/images/story/2008/10/7/1332-solar-updraft-towers-variations-and-research.jpg', "Tom Bosschaert", "", "", "", 'The idea of using solar radiation to generate air convection that can subsequently be converted to an energy source has been around since the start of the 20th century, when a Spanish Colonel called Isidoro Cabanyes proposed it in a scientific magazine. Solar Updraft towers, also called solar wind or solar chimney plants, provide a very simple method for renewable electricity generation, with a constant and reliable output. Other renewable energy sources such as wind turbines and solar arrays suffer from high diurnal and seasonal fluctuations, or unpredictable patterns of output.'); addColumnBoxStoryObj("feature", 4, 53736, '2008-10-06', 'PV\'s \"Moore\'s Law\" Required To Drive Increased Material Efficiency', '/assets/images/story/2008/10/6/1332-pv-s-moore-s-law-required-to-drive-increased-material-efficiency.jpg', "Debra Vogler, Senior Technical Editor, Solid State Technology", "", "", "", 'The road to grid parity for PV power generation will be difficult, needing five or more years to compete with utility power, unsubsidized, on a large scale, noted Mark Thirsk, managing partner at Linx Consulting, at a recent SEMI PV forecast luncheon (Sept. 18) in Santa Clara, CA.'); Headline News - Sat Oct 11 13:00:48 CDT 2008 NSP & Solarday Sign US $210M Solar Cell Deal CSI Signs 60-MW Deal with Systaic Tetra Tech Awarded US $69M In Wind Energy Contracts Standard Solar Raises US $8.5M Southridge To Acquire Ethanol Plant in Brazil Hydro Invests US $15M in Ascent Solar setTimeout('doFeatureSlide()', 6000);setTimeout('doFeatureSlide()', 12000);setTimeout('doFeatureSlide()', 18000);setTimeout('doFeatureSlide()', 24000);setTimeout('doFeatureSlide()', 30000); RE Insider 2008-10-09 Kai Sametinger, forseo GmbH The Art of Geothermal - Investing in and Capitalizing... addColumnBoxStoryObj("reinsider", 11, 53754, '2008-10-09', 'The Art of Geothermal - Investing in and Capitalizing on the Heat Beneath Your Feet', '/assets/images/story/2008/10/9/thumb-1332-the-art-of-geothermal--investing-in-and-capitalizing-on-the-heat-beneath-your-feet.jpg', "Kai Sametinger, forseo GmbH", "", "", "", ""); | Inside RE Podcast 2008-10-08 The Beginning of a Geothermal Renaissance addColumnBoxStoryObj("podcast", 19, 53793, '2008-10-08', 'The Beginning of a Geothermal Renaissance', '/images/template/column-podcast.jpg', "", "", "", "", ""); | RE World Magazine Volume 11 Issue 4 Geothermal Heat Pumps addColumnBoxStoryObj("magazine", 23, 53531, '2008-09-09', 'Geothermal Heat Pumps', '/assets/images/story/2008/9/9/thumb-1332-geothermal-heat-pumps.jpg', "", "11", "4", "", ""); | RE Video Mon Sep 08 10:08:52 CDT 2008 Creating Bioheat: A Look Inside New England Wood Pellet | function populateVideoArray() { addColumnBoxStoryObj("video", '0', '', 'Mon Sep 08 10:08:52 CDT 2008', 'Creating Bioheat: A Look Inside New England Wood Pellet', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid1529447629?src=rss", "", "", ""); addColumnBoxStoryObj("video", '0', '', 'Mon Sep 08 10:19:56 CDT 2008', 'Cline Cellars Goes Solar', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid1738801194?src=rss", "", "", ""); addColumnBoxStoryObj("video", '0', '', 'Mon Sep 08 10:16:25 CDT 2008', 'Intersolar and SEMICON West Showcase Industry Connections', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid1685953062?src=rss", "", "", ""); addColumnBoxStoryObj("video", '0', '', 'Mon Jul 28 08:00:00 CDT 2008', 'Interview with Spire CEO Roger Little', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid1689589813?src=rss", "", "", ""); addColumnBoxStoryObj("video", '0', '', 'Mon Sep 08 10:16:48 CDT 2008', 'Interview with Xantrex CEO John Wallace', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid1688297545?src=rss", "", "", ""); addColumnBoxStoryObj("video", '0', '', 'Thu Jul 31 08:00:00 CDT 2008', 'Interview with Pete Singer of SST Magazine', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid1701249277?src=rss", "", "", ""); }populateVideoArray(); Adam Browning 2008-10-09 What Utility Involvement in the Distributed Solar Market Means... addColumnBoxStoryObj("columnists", '21,15', 53735, '2008-10-09', 'What Utility Involvement in the Distributed Solar Market Means for the Future of the Solar Industry', '/assets/images/authors/31-adam-browning.jpg', "Adam Browning", "", "", "", ""); | In Focus 2008-10-03 Guide to Cow-powered Biogas Energy Released addColumnBoxStoryObj("infocus", 5, 53752, '2008-10-03', 'Guide to Cow-powered Biogas Energy Released', '/assets/images/story/2008/10/3/thumb-1332-online-casebook-of-cow-powered-biogas-energy.jpg', "", "", "", "", ""); | Featured PR 2008-10-11 Mitsubishi Electric Will Power Large Solar Winery Project 2008-10-10 SunEdison Appoints Reed Hundt, Former FCC Chairman, To The Board of Directors 2008-10-10 Second Wind Awarded $500,000 Loan for Triton Sonic Wind Profiler 2008-10-10 Apollo Solar Announces New Chief Operating Officer 2008-10-09 CEO of SPG Solar to Speak at Solar Power International 2008 2008-10-09 Students to Design University Building Powered by Hydrogen 2008-10-08 Pinn Bros. Fine Homes Opens Nation's Largest 100% Solar Master-Planned Community 2008-10-08 Essex Unveils Solar Electric System Awarded Under the Connecticut Clean Energy Communities Program View All » Featured Products PV Ribbon Wires by Torpedo Specialty Wire, Inc. View All » Featured Events Solar Water Heating Intensive - Nov 7-9 - Hopland, CA Intro to Off-Grid Systems - Nov 5-6, Hopland, CA Off-GridSystems for Professionals - Nov. 7-8, Hopland, CA Build Your Own Biodiesel Processor - October 26 - Richmond, CA View All » Featured Jobs Product Marketing Manager Senior Marketing Communications/ PR Manager Residential Sales Manager Senior Commercial Marketing Manager/ Director Search For Jobs » News by Technology Solar Energy Hydropower Green Power Hydrogen Ocean Energy Geothermal Bioenergy Wind Power Join Our Total Access Marketing Program Featured Total Access Partners Click company logos to learn more Home News Video Products Companies Events Jobs Expo North America Expo Europe Sitemap Advertising & Services Newsletters About Us Contact Privacy Terms of Use Copyright © 1999-2008 RenewableEnergyWorld.com - All rights reserved. RenewableEnergyWorld.com Franchise Partners var _hbEC=0,_hbE=new Array;function _hbEvent(a,b){b=_hbE[_hbEC++]=new Object();b._N=a;b._C=0;return b;} var hbx=_hbEvent("pv");hbx.vpc="HBX0100u";hbx.gn="ehg-pennwell.hitbox.com"; //BEGIN EDITABLE SECTION //CONFIGURATION VARIABLES hbx.acct="DM571109GPEM";//ACCOUNT NUMBER(S) hbx.pn="";//PAGE NAME(S) hbx.mlc="/rea/home";//MULTI-LEVEL CONTENT CATEGORY hbx.pndef="";//DEFAULT PAGE NAME hbx.ctdef="full";//DEFAULT CONTENT CATEGORY //OPTIONAL PAGE VARIABLES //ACTION SETTINGS hbx.fv="";//FORM VALIDATION MINIMUM ELEMENTS OR SUBMIT FUNCTION NAME hbx.lt="auto";//LINK TRACKING hbx.dlf="n";//DOWNLOAD FILTER hbx.dft="n";//DOWNLOAD FILE NAMING hbx.elf="n";//EXIT LINK FILTER //SEGMENTS AND FUNNELS hbx.seg="";//VISITOR SEGMENTATION hbx.fnl="";//FUNNELS //CAMPAIGNS hbx.cmp="";//CAMPAIGN ID hbx.cmpn="";//CAMPAIGN ID IN QUERY hbx.dcmp="";//DYNAMIC CAMPAIGN ID hbx.dcmpn="";//DYNAMIC CAMPAIGN ID IN QUERY hbx.dcmpe="";//DYNAMIC CAMPAIGN EXPIRATION hbx.dcmpre="";//DYNAMIC CAMPAIGN RESPONSE EXPIRATION hbx.hra="";//RESPONSE ATTRIBUTE hbx.hqsr="";//RESPONSE ATTRIBUTE IN REFERRAL QUERY hbx.hqsp="";//RESPONSE ATTRIBUTE IN QUERY hbx.hlt="";//LEAD TRACKING hbx.hla="";//LEAD ATTRIBUTE hbx.gp="";//CAMPAIGN GOAL hbx.gpn="";//CAMPAIGN GOAL IN QUERY hbx.hcn="";//CONVERSION ATTRIBUTE hbx.hcv="";//CONVERSION VALUE hbx.cp="null";//LEGACY CAMPAIGN hbx.cpd="";//CAMPAIGN DOMAIN //CUSTOM VARIABLES hbx.ci="";//CUSTOMER ID hbx.hc1="";//CUSTOM 1 hbx.hc2="";//CUSTOM 2 hbx.hc3="";//CUSTOM 3 hbx.hc4="";//CUSTOM 4 hbx.hrf="";//CUSTOM REFERRER hbx.pec="";//ERROR CODES //INSERT CUSTOM EVENTS //END EDITABLE SECTION |
|