

/*00.js*/
function ShowProgram(a,b){$("#title"+a+b).hide();$("#details"+a+b).show();UpdateProgramInfo(a,b)}function HideProgram(a,b){$("#title"+a+b).show();$("#details"+a+b).hide()}function UpdateProgramInfo(b,c){var a=new ProgramInfoObject();a.ProfessionID=c;a.InstitutionID=b;a.InstitutionID=b;a.ConcentrationID=0;if($("#ctl00_p_Concentration_DropDownList").length>0){if($("#ctl00_p_Concentration_DropDownList").val()!="0"){a.ConcentrationID=parseInt($("#ctl00_p_Concentration_DropDownList").val())}}a.ProgramStatus=$("#ctl00_p_SearchIn_RadioButtonList").find("input:checked").val();ProgramInfo.GetTooltip(a,OnRequestComplete)}function OnRequestComplete(a){$("#ProgramInfo"+a.InstitutionID+a.ProfessionID).html(a.ProgramDetails);$("#ProgramLoading"+a.InstitutionID+a.ProfessionID).hide()}function SetLoader(){$("#LoadingDiv").show()}function PrintProgram(c){var a="<html>\n<head>\n";a+="<title>CAAHEP Accredited Programs</title>\n";a+="<style type='text/css'>td,body{font-family: Arial, Helvetica, sans-serif;font-size: 12px;}</style>";a+="\n</head>\n<body>\n";a+="<b>CAAHEP Accredited Programs</b><br /><hr>";a+=$("#ProgramInfo"+c+" .Program").html();a+="\n</body>\n</body>";var b=window.open("","","scrollbars=yes,width=600,height=500,toolbar=yes,status=yes,menubar=yes,resizable=no");b.document.open();b.document.write(a);b.document.close();b.print()}function ExpandAll(){$(".expandlink").click();$(".collapseall").show();$(".expandall").hide()}function CollapseAll(){$(".collapse a").click();$(".collapseall").hide();$(".expandall").show()};

