
var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]='Good, simple device<i>-General Manager\, <i> - Utility</i>'

quotes[1]='The line crews will take down fewer good transformers <i> - Director\, T\& D\, Utility</i>'

quotes[2]='\"No brainer\" <i> - Vice President Engineering\, Utility</i>'

quotes[3]='Finally\, a safety product that makes us money.<i> - Vice President Distribution\, Utility</i>'

quotes[4]='This is the right thing to do for our utility.<i> - Senior Standards Engineer, Utility</i>'

quotes[5]='For the price why wouldn\’t we have it?<i> - Standards Engineer, Utility</i>'

quotes[6]='There is no doubt the device would be good for the safety of employees to prevent closing a transformer on a fault. <i> - Director, T\&D, Utility</i>'

quotes[7]='Easy business case - capital vs O\&M. <i> - Vice President, Utility</i>'

quotes[8]='Great idea - outperform their competitor on restoration time. <i> - Director, Systems Planning, Utility</i>'

quotes[9]='We really like the IFD. It’s a great idea. <i> - Senior Standards Engineer, Utility</i>'

quotes[10]='Great idea. We figure about 1 in 4 transformers are usually faulty. If you will know which one has the fault, you won’t spend any minutes on that transformer. <i> - Standards Engineer, Utility</i>'

quotes[11]='Now you can send a team.  This one is faulty.  That is the size of the transformer and the proper location is right there. <i> - Standards Engineer, Utility</i>'

quotes[12]='Up to now, there has not been a sound, reliable test \(without disconnecting the transformer and applying voltage\) to detect faulted, pole-mounted transformers. <i> - Senior Standards Engineer, Utility</i>'

quotes[13]='Of the transformers analyzed, 75\% show failure signatures which would most likely have resulted in an internal fault where a sensor such as the Internal Fault Detector could have provided valuable information to the line crew during the outage event. <i> - Standards Engineer, Utility</i>'

quotes[14]='The real operational advantage of using IFDs is that they remove the faulted transformers from the time consuming \(return to service or replace\) decision making process. <i> - Operations Manager, Utility</i>'

quotes[15]='Restoration is quicker because I won\’t spend minutes restoring what is faulty. <i> - Lineman</i>'

quotes[16]='Speaking to a Powerline Technician, \(the new title for linemen\) about the IFD and I thought the statement he made about his 33 years in the trade was very interesting.   He said the thing he feared the most in all his years, was refusing transformers.   He said refusing a line section, you were able to parole the line and nearly always see the problem, but a transformer you never knew if the unit was faulty and what the consequence would be.  <i> - Engineer</i>'



var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])

