// Status Text
function statustext()  {
var text = "CH Reynolds Electric Inc."
window.status = text
timeout = setTimeout("statustext()",2500)
}

//map
n = 1; // number of hidden layers 
function show(a){ 
for(i=1;i<=n;i++){ 
document.getElementById('t'+i).style.display = 'none'; 
} 
document.getElementById('t'+a).style.display = 'inline'; 
}
n = 1; // number of hidden layers 
function hide(a){ 
for(i=1;i<=n;i++){ 
document.getElementById('t'+i).style.display = 'inline'; 
} 
document.getElementById('t'+a).style.display = 'none'; 
}

// Window opener centered
// <a href="javascript:centeredWindow('link.html','pop','640','480')">
function centeredWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=yes'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

var address	= ('&copy;2010 CH Reynolds Electric Inc. &#149; 1281 Wayne Ave, San Jose, CA 95131 &#149; (800) 979-0394');