// JavaScript Document
//add/remove functions for web page TP management

var theAddPage = "http://northernforestcanoetrail.org/addToTripPlanner.cfm";
var tpPop = 0;
  
function addTextListingToTripPlanner(serviceID,typeID,sectionID)
{
	var left = 100;
	var top = 100;
	var width = 500;
	var height = 225;

  if(tpPop)
  {
    if(!tpPop.closed) tpPop.close();
  }

	//alert(theAddPage+'?serviceID='+serviceID+'&serviceTypeID='+typeID+'&sectionID='+sectionID);
  tpPop = open(theAddPage+'?serviceID='+serviceID+'&serviceTypeID='+typeID+'&sectionID='+sectionID, 'tpPop', 'toolbar=0,location=no,directories=no,status=no,menubar=no,scrollbars=1,resizable=1,copyhistory=0,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');

	
}