function Init() {
    cvcs.RemoteHost = "88.33.59.18"
    cvcs.RemoteWeb = 80
    cvcs.RemotePort = 8481
    cvcs.Timeout = 5
    cvcs.AuthType = 1
    cvcs.PreviewFrameRate = 1
    cvcs.PreviewWidth = 640
    cvcs.PreviewHeight = 480
    cvcs.DeviceSerialNo = ""
    window.setInterval("ShowFrameRate()", 1000)
}

function ShowFrameRate() {
    if (0)
    {
       var fFrameRate = cvcs.FrameRate
       window.status = "Frame:" + fFrameRate.toString() + " fps"
    }
    cvcs.Play()
    CurrentTime.innerHTML = cvcs.TimeString
}