Renewable Energy World - Renewable Energy News, Jobs, Events, Companies, and more e-Newsletter | Podcast | Magazine | Expo Register | Sign-In News | Products | Companies | Events | Jobs OA_show(28); 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 Finance Video Products Find Product Add Product Companies Find Company View All Companies 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 OA_show(24); 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 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 = ""; } // 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}); } The German Perspective, Part 3: Training the Future Wind Power Workforce January 8, 2009 Stephen Lacey, Staff Writer Newcomers to the northern German city of Husum usually notice two things when entering the quaint seaside tourist destination: The rows of small historic brick shops and houses lining the harbor and the... continue addColumnBoxStoryObj("feature", 4, 54442, 'January 8, 2009', 'The German Perspective, Part 3: Training the Future Wind Power Workforce', '/assets/images/story/2009/1/8/1332-the-german-perspective-part-3-training-the-future-wind-power-workforce.jpg', "Stephen Lacey, Staff Writer", "", "", "", 'Newcomers to the northern German city of Husum usually notice two things when entering the quaint seaside tourist destination: The rows of small historic brick shops and houses lining the harbor and the massive, hammer-like structure standing guard over the neighborhood.'); addColumnBoxStoryObj("feature", 4, 54420, 'January 7, 2009', 'The German Perspective, Part 2: A Resilient Renewable Energy Leader', '/assets/images/story/2009/1/7/1332-the-german-perspective-part-2-the-resilient-renewable-energy-leader.jpg', "Stephen Lacey, Staff Writer", "", "", "", 'When Hermann Albers inherited his father\'s 80 hectare farm in northern Germany in 1981, he soon realized that it would be necessary to supplement his income. At that time, many family farmers around the country were leaving for urban areas in search of higher paying jobs. But Albers was determined to stay. Finally, in the early 90\'s with the introduction of the first feed-in tariff (FIT), he found his answer: Wind power.'); addColumnBoxStoryObj("feature", 4, 54409, 'January 6, 2009', 'The German Perspective, Part 1: Difficulties in Climate Negotiations', '/assets/images/story/2009/1/2/1332-german-difficulties-in-climate-negotiations.jpg', "Stephen Lacey, Staff Writer", "", "", "", 'Walking down the cobblestone pathway that connects the buildings of the Potsdam Institute for Climate Impact Research (PIK), Dr. Brigitte Knopf looks up at the white stucco Einstein Tower looming above her, the white building in stark contrast to the gloomy December skies of Germany.'); addColumnBoxStoryObj("feature", 4, 54371, 'January 5, 2009', 'Abu Dhabi: The New Prince of Solar Technology?', '/assets/images/story/2008/12/22/1332-abu-dhabi-the-new-prince-of-solar-technology.jpg', "Jane Burgermeister, European Correspondent", "", "", "", '\"The Sun,\" said Jalal al-Din Rumi, one of the world\'s greatest poets, \"must come.\" And the Arab world, which was an engine for centuries of innovation in science, philosophy and the arts, is now poised to become a leader in solar technology.'); addColumnBoxStoryObj("feature", 4, 54383, 'December 31, 2008', '2008 Wrap-up: RenewableEnergyWorld.com Keeps Growing and Growing', '/assets/images/story/2008/12/31/1332-2008-wrap-up-renewableenergyworld-com-keeps-growing-and-growing.jpg', "Jennifer Runyon, Managing Editor", "", "", "", 'To use an old cliche, it\'s been a banner year here at RenewableEnergyWorld.com. Despite the worldwide downturn of financial markets and the global credit crisis, many Renewable Energy companies continue to thrive and our publication is no exception.'); Headline News - January 8, 2009 Masdar Signs 50-MW LOI with Parabel AG First Phase of 69-MW Michigan Wind in Commercial Operation DOE to Provide US $200M for Small Biorefineries FPL Energy is Now NextEra Energy Resources Perpetual Energy Systems Activates Four Solar PV Installations for Wineries Primafuel Offers New Algae Biorefinery Program setTimeout('doFeatureSlide()', 6000);setTimeout('doFeatureSlide()', 12000);setTimeout('doFeatureSlide()', 18000);setTimeout('doFeatureSlide()', 24000);setTimeout('doFeatureSlide()', 30000); RE Insider January 8, 2009 Thomas R. Blakeslee, Clearlight Foundation Beijing's Showcase "Clean Coal" Power Plant addColumnBoxStoryObj("reinsider", 11, 54316, 'January 8, 2009', 'Beijing\'s Showcase \"Clean Coal\" Power Plant', '/assets/images/story/2009/1/11/thumb-1332-beijing-s-showcase-clean-coal-power-plant.jpg', "Thomas R. Blakeslee, Clearlight Foundation", "", "", "", ""); | Inside RE Podcast January 8, 2009 The Long, Hard Road for Clean Energy Finance addColumnBoxStoryObj("podcast", 19, 54466, 'January 8, 2009', 'The Long, Hard Road for Clean Energy Finance', '/images/template/column-podcast.jpg', "", "", "", "", ""); | RE World Magazine Volume 11 Issue 6 Husum Windenergy 2008: Where the Wind Blows Is Where... addColumnBoxStoryObj("magazine", 23, 54340, 'January 8, 2009', 'Husum Windenergy 2008: Where the Wind Blows Is Where the Money Goes', '/assets/images/story/2008/12/18/thumb-1332-husum-windenergy-2008-where-the-wind-blows-is-where-the-money-goes.jpg', "", "11", "6", "", ""); | RE Video December 29, 2008 Policy Year in Review | function populateVideoArray() { addColumnBoxStoryObj("video", '0', '', 'December 29, 2008', 'Policy Year in Review', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid5716045001?src=rss", "", "", ""); addColumnBoxStoryObj("video", '0', '', 'December 8, 2008', 'Covanta Creates Energy From Waste', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid4046192001?src=rss", "", "", ""); addColumnBoxStoryObj("video", '0', '', 'December 8, 2008', 'Renewable Energy on Display at Power-Gen International', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid4046174001?src=rss", "", "", ""); addColumnBoxStoryObj("video", '0', '', 'December 8, 2008', 'CH2M Hill Works Across the Energy Spectrum', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid4043677001?src=rss", "", "", ""); addColumnBoxStoryObj("video", '0', '', 'December 8, 2008', 'Mitsubishi Moving Ahead in Wind', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid4043669001?src=rss", "", "", ""); addColumnBoxStoryObj("video", '0', '', 'December 8, 2008', 'Ausra Makes Its Mark in the U.S.', ' ', "http://link.brightcove.com/services/link/bcpid1412254202/bclid1407498587/bctid4043691001?src=rss", "", "", ""); } populateVideoArray(); J. Peter Lynch January 6, 2009 Solar Stocks in 2008: A Look Back addColumnBoxStoryObj("columnists", '21,15', 54411, 'January 6, 2009', 'Solar Stocks in 2008: A Look Back', '/assets/images/authors/5-j--peter-lynch.jpg', "J. Peter Lynch", "", "", "", ""); | In Focus December 19, 2008 Wind Energy More Economically Sound Than Mountaintop Removal Mining... addColumnBoxStoryObj("infocus", 5, 54357, 'December 19, 2008', 'Wind Energy More Economically Sound Than Mountaintop Removal Mining', '/assets/images/story/2008/12/19/thumb-1332-wind-energy-more-economically-sound-than-mountaintop-removal-mining.jpg', "", "", "", "", ""); | OA_show(41); OA_show(23); Renewable Energy Companies: Total Access Marketing Partners Find a Company: Technology Bioenergy
Energy Efficiency
Geothermal Energy
Green Power
Hydrogen - Fuel Cells
Hydropower
Ocean Energy
Passive Solar Design & Daylighting
Solar Photovoltaic (PV)
Solar Thermal Energy
Wind Power
Other View All Companies | Learn more about Total Access Renewable Energy PR Upcoming Carbon Seminar in New York Spire Enters into Contract with Solaria Energia of Spain for 100MW Production Line SunEdison Announces Largest Solar Distributed Generation Program with Developers Diversified Realty IDEC Corporation Receives Energy Makeover SEPA Releases Utility Procurement Study: "Solar Electricity in the Utility Market" Siemens AG's $1.6 Billion Penalty for Bribing Foreign Officials is a Warning to the International Energy Industry SolarWall Patent Infringement Lawsuit #2-Settled! WorldWater & Solar Technologies, Solar Power Partners Complete Solar Installation at Valley Center Municipal Water District View All PR | Learn how to post PR Renewable Energy Jobs PV Technician INSIDE SALES CONSULTANT-NATIONWIDE-HQ based HR Specialist (Classification) PV Project Engineer Search For Jobs | Post a Job | Post a Resume Renewable Energy Events Grid-tied PV Green Energy Live Online Expo with 12 cutting - edge solutions for cities/towns, business, building & campus Advanced PV Online: Design Criteria & NEC LMOP Conference View All Events | Learn how to post an event Renewable Energy Products Tioga Energy SurePath(sm) Solar Power Purchase Agreement PanelClaw Flat Roof Mounting System Fronius IG Plus View All Products | Learn how to post product Renewable Energy Finance Renewable Energy News By Technology Solar Wind Geothermal Ocean Bio Hydrogen Hydro Loading Content var activeTechId = null;function doHtTab(techId, activeTab) { if(techId != activeTechId) { var htContentM = document.getElementById('htContentMiddle'); htContentM.style.display = "none"; var htContentL = document.getElementById('htContentLeft'); var htContentR = document.getElementById('htContentRight'); htContentL.innerHTML = ""; htContentR.innerHTML = ""; var htLoader = document.getElementById("htLoader"); htLoader.style.display = "block"; activeTechId = techId; // highlight new active tab and unhighlight old tab var oldTab = document.getElementById("htActiveTab"); if(oldTab != null) { oldTab.id = ""; } activeTab.id = "htActiveTab"; var params = 'techId=' + techId + '&ieSucks=' + IeSucksUrlDate(); new Ajax.Request('/rea/ajax/newsbytech', { 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("stories")[0]; var featureStories = xmlBase.getElementsByTagName("featureStory"); var numFeatureStories = featureStories.length; var featureStory, storyHeadline, storyId, storyPublish, storyImage, storyContainer, headlineLink, storyImg, publishDiv, imageLink; for(var i = 0; i < numFeatureStories; i++) { featureStory = featureStories[i]; storyHeadline = trim(featureStory.getElementsByTagName("headline")[0].firstChild.nodeValue); storyId = trim(featureStory.getElementsByTagName("id")[0].firstChild.nodeValue); storyImage = trim(featureStory.getElementsByTagName("image")[0].firstChild.nodeValue); storyPublish = trim(featureStory.getElementsByTagName("publish")[0].firstChild.nodeValue); storyContainer = document.createElement("div"); storyContainer.className = "htFeatureStory"; publishDiv = document.createElement('div'); publishDiv.appendChild(document.createTextNode(storyPublish)); headlineLink = document.createElement("a"); headlineLink.href = "/rea/news/story?id=" + storyId; headlineLink.appendChild(document.createTextNode(storyHeadline)); imageLink = document.createElement("a"); imageLink.href = "/rea/news/story?id=" + storyId; storyImg = document.createElement('img'); storyImg.src = storyImage; storyImg.alt = storyHeadline; imageLink.appendChild(storyImg); storyContainer.appendChild(imageLink); storyContainer.appendChild(publishDiv); storyContainer.appendChild(headlineLink); var divClear = document.createElement('div'); divClear.style.clear = "left"; storyContainer.appendChild(divClear); htContentL.appendChild(storyContainer); } var regStories = xmlBase.getElementsByTagName("regStory"); var numRegStories = regStories.length; var regList = document.createElement('ul'); var liItem; for(var i = 0; i < numRegStories; i++) { featureStory = regStories[i]; storyHeadline = trim(featureStory.getElementsByTagName("headline")[0].firstChild.nodeValue); storyId = trim(featureStory.getElementsByTagName("id")[0].firstChild.nodeValue); storyPublish = trim(featureStory.getElementsByTagName("publish")[0].firstChild.nodeValue); liItem = document.createElement('li'); headlineLink = document.createElement("a"); headlineLink.href = "/rea/news/story?id=" + storyId; headlineLink.appendChild(document.createTextNode(storyHeadline)); liItem.appendChild(headlineLink); regList.appendChild(liItem); } htContentR.appendChild(regList); htLoader.style.display = "none"; Effect.BlindDown(htContentM, {duration:1}); } }); }}doHtTab(9, document.getElementById('htInitTab')); Featured Total Access Partners Click company logos to learn more Join Our Total Access Marketing Program Home News Video Products Companies Events Jobs Magazine Expo North America Expo Europe Sitemap Advertising & Services Newsletters About Us Contact Privacy Terms of Use Copyright © 1999-2009 RenewableEnergyWorld.com - All rights reserved. World's #1 Renewable Energy Network! 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 var scacc="pennrew,pennpower-rollup"var linkinternal="renewableenergyworld.com" var fullurl=window.location.href;var selstringlen=fullurl.lastIndexOf('?');var urllength=fullurl.length;var campaignvalue=""; function getqueryparamcamp(campvar){var tempcampvar=campvar;if(selstringlen > 0){var campaignquerystr=fullurl.substring(selstringlen+1,urllength); var temparr=new Array();temparr=campaignquerystr.split('&'); for(var i=0;i= 0) { var querykey = temparr[i].substring(0,pos1); var queryvalue = temparr[i].substring(pos1+1); if(querykey==tempcampvar) { campaignvalue=queryvalue; break; } }} } return campaignvalue; } |
|