//*****************************************************************************
//	PopUp
//	Function to create a pop-up window from a URL.
//
//	Example:
//	<a onclick="PopUp( 'masthead', 'width=500,scrollbars=yes' );" href="masthead.html" target="masthead">
//	About The Gulf of Maine Times
//	</a>
function PopUp( theWindowName, theFeatures )
{
	// Parameters
	// theWindowName 	: the name to use when referring to this window with js
	// theFeatures		: the features you want the new window to have.  See the JS documentation for the 
	//			  full list of features.
	//
	var newWin = window.open('', theWindowName, theFeatures); 
	newWin.focus();
}
//*****************************************************************************
