function pickviewer(cam)
{
	var camaddr = ['http://cam1.law.ucdavis.edu', 'http://cam2.law.ucdavis.edu'];
	if (cam == null)
		cam = 0;
	if (cam != null && cam >= 0 && cam < camaddr.length)
	{
		if (navigator.userAgent && navigator.userAgent.indexOf('Firefox') != -1)
		{
			// it's firefox, so use motion jpg
			document.getElementById('camdiv').innerHTML = '<img src="' + camaddr[cam] + '/axis-cgi/mjpg/video.cgi" alt="">';
		}
		else
		{
			if (installed == 'true') {
				// not firefox, so use iframe to cambozola java applet on camera
				document.getElementById('camdiv').innerHTML = '<iframe id="camframe" src="' + camaddr[cam] + '/local/viewer/javacam.html" ' +
					'frameborder="0" scrolling="no" width="704" height="480" ' +
					'marginheight="0" marginwidth="0"></iframe>';
			}
			else {
				document.getElementById('camdiv').innerHTML = "<p><span class=\"blueText\">Can\'t see the video?</span></p><p>Some browsers may require additional software to view the streaming video.  To download and install Java, please follow the instructions provided <a href=\"http://www.java.com/en/download/help/6000010300.xml#download\">here</a>.</p>";
			}
		}
	}
}
