/** Copyright (C) 2002 Dan Heuston. **/
/** All rights reserved.            **/

function openElectrics() {

 winWidth  = 480
 winHeight = 525
 xpos = screen.width - winWidth
 ypos = screen.height - (winHeight + 100)
 
 winparams = "scrollbars=yes, menubar=no, width=" + winWidth + ", height=" + winHeight + ", resizable=yes, left=" + xpos + ", top=" + ypos + ", status=no"

 towbarWin = window.open("towbarelec.htm", "towbarWin", winparams)
 towbarWin.focus()
 
}