// JavaScript Document

function openCam(id) {
	window.open('/xtra/webcam?id='+id, "webcamWindow", "location=0,status=0,scrollbars=0,width=480,height=513,resizable=0");
	return false;
}

function openLiveStream(id) {
	window.open('/xtra/live?id='+id, "liveWindow", "location=0,status=0,scrollbars=0,width=480,height=370,resizable=0");
	return false;
}

function openAudioStream(id) {
	window.open('/xtra/audio?id='+id, "liveWindow", "location=0,status=0,scrollbars=0,width=512,height=512,resizable=0");
	return false;
}