// JavaScript Document

function openLoc( form ) { 

	var newIndex = form.cam.selectedIndex; 

	if ( newIndex == 0 ) { 

		alert( "Please select a Bridge Cam!" ); 

	} else { 

		cururl = form.cam.options[ newIndex ].value; 

		window.location.assign( cururl ); 

	} 

} 