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... Bush Signs Renewable Energy Tax Credit Extensions into Law click here for more information 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}); } PV's "Moore's Law" Required To Drive Increased Material Efficiency October 6, 2008 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... continue addColumnBoxStoryObj("feature", 4, 53736, 'October 6, 2008', '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.'); addColumnBoxStoryObj("feature", 4, 53755, 'October 3, 2008', 'Tax Credits Extended: Renewable Energy Industry Breathes Sigh of Relief', '/assets/images/story/2008/10/3/1332-tax-credits-pass-renewable-energy-industry-breathes-sigh-of-relief.jpg', "Graham Jesmer and Stephen Lacey, Staff Writers", "", "", "", 'After a disastrous few weeks on Wall Street, the renewable energy industry has come out a winner. It seems there\'s always a silver lining in even the worst developments.'); addColumnBoxStoryObj("feature", 4, 53741, 'October 3, 2008', 'National Solar Tour Puts Solar Energy On Display Across America', '/assets/images/story/2008/10/3/1332-national-solar-tour-puts-solar-energy-on-display-across-america.jpg', "Graham Jesmer, Staff Writer", "", "", "", 'Sometimes the best way to educate the general public about new technology is to show them how it works in the real world. That\'s what the American Solar Energy Society (ASES) says is at the heart of its National Solar Tour, now in it\'s 13th year and taking place this weekend in cities and towns across America.'); addColumnBoxStoryObj("feature", 4, 53727, 'October 2, 2008', 'Colorado Renewable Energy Profile, Part One', '/assets/images/story/2008/10/2/1332-colorado-renewable-energy-profile-part-one.jpg', "Andrew Burger, International Correspondent", "", "", "", 'Colorado is blessed with an abundance of largely untapped renewable resources, a fact that has become more widely and greatly appreciated in light of high fossil fuel prices and a range of socioeconomic and environmental challenges that are only growing in intensity.'); addColumnBoxStoryObj("feature", 4, 53714, 'October 1, 2008', 'Solar Paint on Steel Could Generate Renewable Energy Soon', '/assets/images/story/2008/10/1/1-1332-solar-paint-on-steel-could-generate-renewable-energy-soon.jpg', "Jane Burgermeister, European Correspondent", "", "", "", 'In three years, buildings covered in steel sheets could be generating large amounts of solar electricity, thanks to a new photovoltaic paint that is being developed in a commercial partnership between UK university researchers and the steel industry.'); Headline News - October 7, 2008 EnergyMixx Signs €500M Financing Deal with Deutsche Bank Vattenfall Acquires AMEC Wind Energy CSI & Iliotec Sign 28-MW Solar Module Deal Interstate 65 Is America's First Biofuels Corridor Department of Energy and Climate Change Created in UK National Grid Announces 5 MW of Solar for Massachusetts setTimeout('doFeatureSlide()', 6000);setTimeout('doFeatureSlide()', 12000);setTimeout('doFeatureSlide()', 18000);setTimeout('doFeatureSlide()', 24000);setTimeout('doFeatureSlide()', 30000); RE Insider October 6, 2008 Ben McMakin, Principal, Van Ness Feldman Five Cleantech Senate Candidates to Watch addColumnBoxStoryObj("reinsider", 11, 53669, 'October 6, 2008', 'Five Cleantech Senate Candidates to Watch', '/assets/images/story/2008/10/2/thumb-1332-five-cleantech-senate-candidates-to-watch.jpg', "Ben McMakin, Principal, Van Ness Feldman", "", "", "", ""); | Inside RE Podcast October 2, 2008 Rapid Growth in the Algae Market; Managing Risk in... addColumnBoxStoryObj("podcast", 19, 53725, 'October 2, 2008', 'Rapid Growth in the Algae Market; Managing Risk in the Renewables Space', '/images/template/column-podcast.jpg', "", "", "", "", ""); | RE World Magazine Volume 11 Issue 4 Geothermal Heat Pumps addColumnBoxStoryObj("magazine", 23, 53531, 'September 9, 2008', 'Geothermal Heat Pumps', '/assets/images/story/2008/9/9/thumb-1332-geothermal-heat-pumps.jpg', "", "11", "4", "", ""); | RE Video September 8, 2008 Creating Bioheat: A Look Inside New England Wood Pellet | function populateVideoArray() { addColumnBoxStoryObj("video", '0', '', 'September 8, 2008', 'Creating Bioheat: A Look Inside New England Wood Pellet', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid1529447629?src=rss", "", "", ""); addColumnBoxStoryObj("video", '0', '', 'September 8, 2008', 'Cline Cellars Goes Solar', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid1738801194?src=rss", "", "", ""); addColumnBoxStoryObj("video", '0', '', 'September 8, 2008', 'Intersolar and SEMICON West Showcase Industry Connections', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid1685953062?src=rss", "", "", ""); addColumnBoxStoryObj("video", '0', '', 'July 28, 2008', 'Interview with Spire CEO Roger Little', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid1689589813?src=rss", "", "", ""); addColumnBoxStoryObj("video", '0', '', 'September 8, 2008', 'Interview with Xantrex CEO John Wallace', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid1688297545?src=rss", "", "", ""); addColumnBoxStoryObj("video", '0', '', 'July 31, 2008', 'Interview with Pete Singer of SST Magazine', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid1701249277?src=rss", "", "", ""); }populateVideoArray(); Clint Wilder October 6, 2008 Perilous Times Call for Transformational Thinking, and Action addColumnBoxStoryObj("columnists", '21,15', 53771, 'October 6, 2008', 'Perilous Times Call for Transformational Thinking, and Action', '/assets/images/authors/14-clint-wilder.jpg', "Clint Wilder", "", "", "", ""); | In Focus October 3, 2008 Guide to Cow-powered Biogas Energy Released addColumnBoxStoryObj("infocus", 5, 53752, 'October 3, 2008', '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 October 6, 2008 New Ideas in Educating a Workforce In Renewable Energy and Energy Efficiency October 6, 2008 Samsung's 3 Megawatt 'Sol-Luce Jindo' Solar Plant Implements Solar Tracking Technology from Thompson Technology Industries (TTI) October 6, 2008 Critical Connection: Leaders Focus on Hydrogen and Renewables at NHA Fall Forum October 6, 2008 SEPA Statement on Historic 8-Year Solar Tax Credit Extension October 6, 2008 Apollo Solar Completes US$4.5M Private Offering October 3, 2008 Solar Water Heating Intensive October 3, 2008 House Passes Energy Legislation in Financial Sector Bill October 2, 2008 Mitsubishi Electric Solar Modules Will Power One of California's Largest Non-Profit Photovoltaic Systems View All » Featured Events Next Generation Biofuels Markets Wire Your Own PV System - Dec 14 - Hopland, CA 95482 World Biofuels Markets Intro to LEED & Commercial Green Building - Nov 7 - Richmond, CA View All » Featured Jobs Oracle Financials-Application Manager Senior Mechanical Design Engineer – Vacuum Equipment Senior Construction Business Analyst Senior Engineer/Scientist-Technical Analysis 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 |
|