Hi guys, it's me again. I just wanted to know hot to remove the IE tool/menu bars and the scroll bar on a window. Once again here is my script:
<html>
<head>
<script language="JavaScript">
<!--
// This will move the window when it is opened or
// refresh/reload is clicked to a location zero pixels to the left
// and zero pixels from the top. Left command goes first,
// top to bottom comes after
self.moveTo(0,0)
// This will resize the window when it is opened or
// refresh/reload is clicked to a width and height of 368x413
// with is placed first, height is placed second
self.resizeTo(368,432)
l=(screen.width-432)/2
t=(screen.height-368)/2
self.moveTo(l,t)
-->
</script>
<script language="JavaScript"><!--
function refreshIt() {
if (!document.images) return;
document.images['myCam'].src = 'imagecam.jpg?' + Math.random();
setTimeout('refreshIt()',2000); // refresh every 2 secs
}
//--></script>
</head>
<body onLoad=" setTimeout('refreshIt()',2000)">
<img src="imagecam.jpg" name="myCamReal">
<img style=display:none onload="document.images['myCamReal'].src=this.src" src="imagecam.jpg" name="myCam">
</body>
</html>