// JavaScript Document
// Basic pop-up window function for the whole site
function popUpWin(theURL,theTitle,theParameters){
	var newWin = window.open(theURL,theTitle,theParameters);
}
