// Syntax for Categories and Sub Categories is:
// "Sub Category Name","unique number"
// the unique number will be the file name where the newsletter links are stored.
// Every Main category needs to have a number in the 100's
// Subcategories will get the Hundred number from the main category and a serial within this hundred
// For example all newsletters with "Collection" in it are stored in file "202.htm".

function setOptions(o) 
{ 
var select2 = document.form1.select2; 
    select2.options.length = 0; 
	
if (o == "2") { // Associates, 200
    select2.options[select2.options.length] = new Option('Associates','200');
	}
if (o == "19") { // Agreements, 1900
    select2.options[select2.options.length] = new Option('Non Solicitation','1900');
    select2.options[select2.options.length] = new Option('Facility Sharing','1901');	
	}
if (o == "10") { // Case Presentations, 1000
    select2.options[select2.options.length] = new Option('Case Presentations','1000');
	select2.options[select2.options.length] = new Option('Facial Esthetics','1001');
	}
if (o == "18") { // Clinical, 1800
    select2.options[select2.options.length] = new Option('Dentures','1800');
	select2.options[select2.options.length] = new Option('Endo','1803');
    select2.options[select2.options.length] = new Option('Extractions','1801');
    select2.options[select2.options.length] = new Option('General Dent','1804');
    select2.options[select2.options.length] = new Option('Ortho','1802');
	select2.options[select2.options.length] = new Option('Continuing Ed','107');
	}
if (o == "20") { // Customer Service, 2000
    select2.options[select2.options.length] = new Option('Patient Handling','2000');
	}
if (o == "1") { // Digital Radiography, 100
    select2.options[select2.options.length] = new Option('Digital Radiography','100');
	}
if (o == "5") { // Financial, 500
	select2.options[select2.options.length] = new Option('Advisor','507');
	select2.options[select2.options.length] = new Option('Cash Flow','509');
	select2.options[select2.options.length] = new Option('Debt','510');
	select2.options[select2.options.length] = new Option('Disability Insurance','503');
	select2.options[select2.options.length] = new Option('Embezzlement','504');
    select2.options[select2.options.length] = new Option('Financial Planning','502');
	select2.options[select2.options.length] = new Option('Health Savings Accounts','500');
	select2.options[select2.options.length] = new Option('Insurance','505');
	select2.options[select2.options.length] = new Option('Leases/Loans','501');
	select2.options[select2.options.length] = new Option('Overhead','508');
	select2.options[select2.options.length] = new Option('Retirement Plan','506');
	}
if (o == "13") { // Human Resources, 1300
	select2.options[select2.options.length] = new Option('Employee Policy','1301');
    select2.options[select2.options.length] = new Option('Policy Manual','1300');
	select2.options[select2.options.length] = new Option('Embezzlement','1302')
	select2.options[select2.options.length] = new Option('Training','1303');
	}
if (o == "15") { // Leadership, 1500
    select2.options[select2.options.length] = new Option('Team Development','1500');
	select2.options[select2.options.length] = new Option('Goals','106');
	
	
	}
if (o == "17") { // Litigation, 1700
	select2.options[select2.options.length] = new Option('Divorce','1701');
    select2.options[select2.options.length] = new Option('Litigation','1700');
	}
if (o == "3") { // Marketing, 300
	select2.options[select2.options.length] = new Option('Branding','302');
	select2.options[select2.options.length] = new Option('Direct Mail','301');
    select2.options[select2.options.length] = new Option('Marketing','300');
	select2.options[select2.options.length] = new Option('Free Publicity','304');
	select2.options[select2.options.length] = new Option('Value Added','303');
	select2.options[select2.options.length] = new Option('Demographics','105');
	}
if (o == "21") { // Management, 2100
	select2.options[select2.options.length] = new Option('Management','2100');
	select2.options[select2.options.length] = new Option('Scheduling','2101');
	}
//if (o == "4") { // Dental Radiography, 400
//    select2.options[select2.options.length] = new Option('Dental Radiography','400');
//	}
if (o == "16") { // Overhead, 1600
	select2.options[select2.options.length] = new Option('Employee Benefits','1600');
	}
if (o == "22") { // Office Design, 2200
	select2.options[select2.options.length] = new Option('Office Design','2200');
	}
if (o == "12") { // Patient Communications, 1200
	select2.options[select2.options.length] = new Option('Informed Consent','1200');
	select2.options[select2.options.length] = new Option('Scheduling','1201');
	select2.options[select2.options.length] = new Option('Patient Communications','1202');
	}
if (o == "7") { // Patient Records, 700
	select2.options[select2.options.length] = new Option('Informed Consent','701');
    select2.options[select2.options.length] = new Option('Purchase','700');
	}
if (o == "11") { // Partnership, 1100
    select2.options[select2.options.length] = new Option('Partnership','1100');
	}
if (o == "14") { // Practice Purchase, 1400
    select2.options[select2.options.length] = new Option('Practice Purchase','1400');
	select2.options[select2.options.length] = new Option('Corporation Entities','1401');
	}
if (o == "9") { // Practice Valuation, 900
    select2.options[select2.options.length] = new Option('Practice Valuation','900');
    select2.options[select2.options.length] = new Option('Goodwill','901');
	}
if (o == "6") { // Technology, 600
    select2.options[select2.options.length] = new Option('Back-Up','600');
	select2.options[select2.options.length] = new Option('Chartless','613');
	select2.options[select2.options.length] = new Option('Ergonomics','612');
	select2.options[select2.options.length] = new Option('Image Software','604');
	select2.options[select2.options.length] = new Option('IntraOral Camera','605');
    select2.options[select2.options.length] = new Option('Lasers','606');
	select2.options[select2.options.length] = new Option('Marketing','616');
	select2.options[select2.options.length] = new Option('Monitors','608');
	select2.options[select2.options.length] = new Option('Operating Systems','602');
	select2.options[select2.options.length] = new Option('Operatory Computers','611');
	select2.options[select2.options.length] = new Option('Operatory Technology','614');
	select2.options[select2.options.length] = new Option('Practice Management Software','601');
	select2.options[select2.options.length] = new Option('Printers','607');
	select2.options[select2.options.length] = new Option('Remote Access','609');
	select2.options[select2.options.length] = new Option('Servers','610');
	select2.options[select2.options.length] = new Option('Software','615');
	select2.options[select2.options.length] = new Option('Treatment Rooms','603');
	}
if (o == "8") { // Transitioning, 800
    select2.options[select2.options.length] = new Option('Exit Strategy','800');
	}
} 

