function LiveCamera() {
	CameraWindow=window.open("LiveCamera.php", "LiveCamera", "width=800,height=600,left=0,top=0,resizable=yes")
	CameraWindow.focus()
}

function TimeLapse() {
	LapseWindow=window.open("TimeLapse.php", "TimeLapse", "width=800,height=650,left=0,top=0,resizable=yes")
	LapseWindow.focus()
}

function SubmitPicture() {
	fmTimeLapse.submit()
}

function Play(FileName) {
    ycoord = event.y + 250;
    xcoord = event.x;
    VPlayerWindow=window.open("./VPlayer.php?FILE="+FileName, "VPlayer", "top="+ycoord+",left="+xcoord+",width=305,height=360,resizable=1")
    VPlayerWindow.focus()
    VPlayerWindow.resizeTo(305,360)
}
