I'm developing some computer based training material and I need to write some code that will test for the presence of a CD ROM in the CD drive (the drive will always be D. At the moment I'm using the following :<br><br><head><br><script language="JavaScript"><br><!--#<br>function noCD()<br>{<br>alert("Please put assets CD into your CD-ROM drive."<br>}<br>//--><br></script><br></head><br><body><br><img src="d:\\image\\testimage.gif" width="1" height="1" border="0" valign="middle" onerror="noCD()"><br></body><br><br>This works, but only on a fast PC. It won't work on old P166's for instance. Anyone know a better way to test for the presence of a CD ROM? <br>