function popWin(url)
{
var newwindow = '';
	if (newwindow.location && !newwindow.closed)
	{
		newwindow.location.href = url;
	}
	else
	{
		newwindow=window.open(url,'info','height=550,width=550,scrollbars=NO, toolbar=yes');
	}
	if (window.focus) {newwindow.focus()}
}


function popUpOfficeMovie(id) {
  popWin("http://www.newenglandmoves.com/common/moviePopup.nem?officeId=" + id);
}

