
function SelectVideo()
{
	try
	{
		if(document.getElementById('lbCameras')&&document.getElementById('lbCameras').length>0)
		{	
			selection=document.getElementById('lbCameras').options[document.getElementById('lbCameras').selectedIndex].value;
			
			if(document.frames)
			{
				if(document.frames('ifVideo'))
				{
					document.frames('ifVideo').window.location.href='video.aspx?Id=' + selection;
				}
			}
			else
			{
				if(document.getElementById('ifVideo'))
				{
					document.getElementById('ifVideo').contentWindow.location.href='video.aspx?Id=' + selection;
				}
			}
		}
	}
	catch(e)
	{
		//keep going
	}
}
