<html>
<head>
<script>
function alertComplete()
{
alert("Image loaded: " + document.getElementById("compman").complete);
}
</script>
</head>
<body onload="alertComplete()">
<img id="compman" src="/demo/compman.gif" alt="Computerman" width="107" height="98">
</body>
</html>