var fDesc=new Array(); fDesc[0] = "I've been trying my hand at film-based astrophotography for a couple of years now. Like most people I started off doing widefield imaging and had some early successes. But once I moved in to prime-focus photography, I quickly realized that I needed an autoguiding setup. Spending hours hunched over a reticle eyepiece in the cold did not appeal to me. Since I had a long-exposure modified webcam, I started searching the web for some suitable guiding software. What I found was either no support for the LX modification, support for a very specific mount, or integration into a complete and sometimes complicated webcam imaging platform. What I really wanted was a standalone program, dedicated to autoguding, useful for film photography, and something that was easy to use.

So I started writing some code! I wrote the software to control my 10" LX200, but made a conscious decision to try and make the software as generic as possible. By writing the code to use the ASCOM standard for telescopes, I didn't lock myself into a particular mount or telescope. I also used the Video for Windows interface for camera control. So any camera that has a VFW driver, and can get a star to display on the screen, should be able to guide a scope.

Now that the code is working well for me, I've decided to release it to the astronomical community in hopes that others will find it useful as well. Theoretically the software should work with any mount which supports the ASCOM PulseGuide() method. This should include any of the the Meade LX series, Meade Autostar based scopes, Celestron GPS and Nexstar i models, and many other scopes/mounts."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }