// JavaScript Document
function flink (whereto) {
	var webcamWindow=window.open(whereto,'trafficWebcamFrame','resizable=no,width=430,height=430');
	webcamWindow.focus();
	if(webcamWindow.closed){
		alert("Please Disable any popup blockers you may have installed in order to view this content.");
		return false;
	} else {
		return webcamWindow;
	}
}