<!-- Begin

<!-- Original:  Eric King (eric_andrew_king@hotmail.com) -->
<!-- Web Site:  http://redrival.com/eak/ -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

function NewWindow(mypage, myname, w, h, scroll, resize) {
   var winl = (screen.width - w) / 2;
   var wint = (screen.height - h) / 2;
   winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable='+resize+'location=no,directories=no,menubar=no,toolbar=no,status=no,dependent=no';
   win = window.open(mypage, myname, winprops);
   if(parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

<!-- Custom Management Software:  Luis Krause, based on Greg McKone's idea -->
function ContactUs() {
   var cmd     = "mailto:";
   var name    = "dchaffee";
   var at      = "@";
   var domain1 = "tel";
   var domain2 = "us";
   var suffix  = ".net";
   var contact = cmd + name + at + domain1 + domain2 + suffix;
   //document.write( '<a href="mailto:' + name + at + domain1 + domain2 + suffix + '">contact us</a>' );
   return contact;
}

//  End -->
