function regCourse(CPSWebPage, CourseName, CourseDate)
{
	msgTxt = "Thank you for your interest in the ";
	msgTxt += CourseName;
	msgTxt += " course starting: ";
	msgTxt += CourseDate
	msgTxt += ". \n\n To complete the on-line registration we utilize our National headquarters web site. We will open the site in a new window. \n\n Please click the \"Register Online\" button at the bottom of the new page.  \n\n If you are a member of CPS be sure to log in to obtain member pricing.";

	OK = confirm(msgTxt);
	if (OK) 
		{
		window.open (CPSWebPage);
		}
}

