Sorry, I've been in Lincon, Nebraska watching the Cornhuskers. (GO BIG RED)

Anyway, the script I use is a javascript from the makers of Webcam32.
You have to add:
<script language="javascript" type="text/javascript" src="basic_refresh.js"></script>
to your header tag and...
<body onload="global_timer();">
to your body tag
then the javascript in the page is:
<script language="Javascript" type="text/javascript"><!--
var img_init = 'http://YOURIPADDRESS:8888/video/pull?';
var ref_init = 100;
var ref_width = 640;
var ref_height = 480;
createImage(img_init, ref_init, ref_width, ref_height);
// -->
</script>
Here is the javascript file itself:
http://www.carterlake.org/basic_refresh.jsNote that I've modified these three bits of code to personalize my loading, error, and pause images.
lURL = "carterlakecam.jpg";
eURL = "carterlakecam.jpg";
pURL = "cam_pause.php";