:How to open a remote Webcam window?

Paste the following code into your the HTML Code of your website:

<!-- VisionGS Code Begin -->

<script language="JavaScript">
function pop(s1,x1,y1) {
nw = window.open(s1,"visiongs","width=" + x1 + ",height=" + y1 + ",scrollbars=no,scrolling=no,location=no,toolbar=no");
}
</script>

<!-- VisionGS Code End -->

If you want to open a remote webcam window, set the link to:

javascript:pop('webcam.html','320','240')

Where 'webcam.html' is your website to open, '320' the width and '240' the height of the remote window. Here a working example.


[<< Go Back]