switch (pddiv) {
	case "SMB1": 	//Notebook PCs
		strValidPDInput = "yes";
		break;
	case "SMB2": 	//Tablet PCs
		strValidPDInput = "yes";
		break;
	case "SMB3":	//Notebook & Tablet Options
		strValidPDInput = "yes";
		break;	
	case "SMB4":	//Desktops for Business
		strValidPDInput = "yes";
		break;	
	case "SMB5":	//Desktop Options for Business
		strValidPDInput = "yes";
		break;	
	case "SMB6":	//Workstations
		strValidPDInput = "yes";
		break;	
	case "SMB7":	//Workstation Options
		strValidPDInput = "yes";
		break;
	case "SMB8":	//Thin Clients
		strValidPDInput = "yes";
		break;
	case "SMB9":	//Monitors for Business
		strValidPDInput = "yes";
		break;
	case "SMB10":	//Clearance for Business
		strValidPDInput = "yes";
		break;
		
		
	case "HHO":	//Jump link to entire HHO section gets a pass
		strValidPDInput = "no";
		break;		
	case "HHO1":	//Notebooks for Home
		strValidPDInput = "yes";
		break;
	case "HH02":	//Notebook Options for Home
		strValidPDInput = "yes";
		break;
	case "HH03":	//Desktops for Home
		strValidPDInput = "yes";
		break;
	case "HH04":	//Desktop Options for Home
		strValidPDInput = "yes";
		break;
	case "HH05":	//Monitors for Home
		strValidPDInput = "yes";
		break;
	case "HH06":	//Clearance for Home
		strValidPDInput = "yes";
		break;																		
	default:		//Anything else fails
		strValidPDInput = "no";
}



if ((pddiv != undefined) && (strValidPDInput == "yes")) {
	document.write('<style type="text/css">');
	document.write('#content' + pddiv + ', #phoneNumber {');
	document.write('	display: block;');
	document.write('}');
	document.write('</style>');	
}	
