<!-- Begin POP-UP SIZES AND OPTIONS CODE

// Copyright 2005 Global Marketing Enterprises www.globalme.biz
// Unauthorized duplication is strictly prohibited 

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

// ONLY USE lowercase FOR ALL OPTIONS

var showimage			= "yes"		// SHOW A SIDEBAR IMAGE
var paragraph_1 		= "yes"		// SHOW THE 1ST PARAGRAPH (RATE CHANGES LINK)
var paragraph_2 		= "yes"		// SHOW THE TRIVIA AREA
var paragraph_3 		= "no"		// SHOW THE PERU UTILITIES LOGO
var spacing				= "1"		// NUDGE SIDEBAR DOWN
var bordercolor			= "FFFFFF"	// SCROLLER AND IMAGE BORDER COLOR

var showdate			= "yes"		// SHOW THE DATE ON THE PAGE
var dateLR				= "left"	// DATE LEFT OR RIGHT
var dateX				= "5"		// DATE X LOCATION
var dateY				= "230"		// DATE Y LOCATION

var showsflash			= "yes"		// SHOW FLASH IMAGE CHANGER
var flashcolor			= "0F0066"	// FLASH BACKGROUND COLOR  
var flashwidth			= "150"		// WIDTH OF THE FLASH (IN PIXELS) (and adjust the menu.js)
var flashheight			= "150"		// HEIGHT OF THE FLASH (IN PIXELS) (and adjust the menu.js)



// NUDGE SPACER
document.write('<img src="picts/spacer.gif" height="'+spacing+'" width="10"><br>')



// SMALL PICTURE AREA
   if (showimage == "yes") {

//document.write('<br>')
document.write('<span class="sidebartitle">')
document.write('</span>')
document.write('<TABLE cellpadding="0" cellspacing="0" border="1" bordercolor="#'+bordercolor+'" style="border-collapse: collapse"><tr><td>')
document.write('<IMG SRC="images/RP3.gif" border="0" width="150"><br>')
document.write('</td></tr></table>')
document.write('<br>')
}
//END SMALL PICTURE AREA



// START SIDEBAR AREA PARAGRAPH 1 EDIT THIS AREA

   if (paragraph_1 == "yes") {

document.write('<span class="sidebartext">')

document.write('<br>')

document.write('Learn about our projected rate changes.</span>')

document.write('<br><br><span class="a.sidelink"><a href="ProjectedRateChanges.htm">More Information...</a>')

document.write('</span>')

document.write('<br><br>')

}
// END SIDEBAR AREA PARAGRAPH 1



// START FLASH CHANGER AREA
   if (showsflash == "yes") {
document.write('<TABLE cellpadding="0" cellspacing="0" border="1" bordercolor="#'+bordercolor+'" style="border-collapse:collapse"><tr><td valign="top">')
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" id="imagechanger" ALIGN="">')
document.write('<PARAM NAME=movie VALUE="imagechanger.swf">')
document.write('<PARAM NAME=quality VALUE=high>')
document.write('<PARAM NAME=bgcolor VALUE=#'+flashcolor+'>')
document.write('<EMBED src="imagechanger.swf" quality=high bgcolor=#'+flashcolor+'  WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" NAME="imagechanger" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">')
document.write('</EMBED>')
document.write('</OBJECT><br>')
document.write('</td></tr></table>')
document.write('<br>')
}
//END FLASH CHANGER AREA



// START SIDEBAR TRIVIA AREAA
   if (paragraph_2 == "yes") {
var howMany = 5
var quote = new Array(howMany+1)
quote[0]="In the beginning, the Thomson-Houston Electric Company said, 'Let there be lights.'  With that company's experimental installation of 25 electric arc lights in Peru in 1885 began the history of what is now known as Peru Utilities.             "
quote[1]="On August 21, 1900, the Municipal Electric Utility was formed and the assets were purchased from the privately held Peru Power and Light Company.                                                                           "
quote[2]="Over 75 people are employed by Peru Utilities.                                                    "
quote[3]="Peru Utilities was the recipient of a Demonstration Energy Efficient Developments  grant from American Public Power Association to produce a series of seven safety and training films geared directly to publicly owned utilities.  These can be purchased online at  www.appanet.org                                                                    "
quote[4]="Our Customer Service Department sponsors several community outreach activities including an annual tour of the Peru Utilities power plant by Peru grade school children during Public Power Week, the annual Peru Utilities calendars, and Customer Appreciation Day.                  "
quote[5]="Volney Q. Irwin of Crawfordsville bought a building on the old canal in Peru in 1886.  In it he put a small boiler, an engine and a couple of dynamos to power the city’s first 25 arc lights, he also took contracts to light stores and buildings.                            "

function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
quo = rndnumber()
quox = quote[quo]
document.write('<span class="sidebartext">')
document.write(quox)

document.write('</span><br><br><br>')

}
// END SIDEBAR TRIVIA AREA



//START SIDEBAR PERU UTILITIES LOGO AREA

if (paragraph_3 == "yes") {

document.write('<div align="center">')
document.write('<br><TABLE cellpadding="0" cellspacing="0" border="1" bordercolor="#'+bordercolor+'" style="border-collapse: collapse"><tr><td>')
document.write('<a href="index.html"><IMG SRC="images/Misc/perulogosm.gif" border="0" width="79"></a><br>')
document.write('</div></td></tr></table>')
document.write('<br><br>')
}
//END SIDEBAR PERU UTILITIES LOGO AREA



// START DATE SCRIPT
   if (showdate == "yes") {

document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(d.getDate() + ". ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}
//END DATE SCRIPT

// -- END -->