function p(url,desc,target) { this.url=url;this.desc=desc;this.target=target; }
var Pages; Pages = new Array(); var a; a=0;
Pages[a++] = new p('','Site Map:',0)

Pages[a++] = new p('/faculty.htm','* Faculty&Staff',0)
Pages[a++] = new p('/current.htm','* Current Student',0)
Pages[a++] = new p('/prospect.htm','* Prospective Student',0)
Pages[a++] = new p('/about/centers.htm','* Campus Locations',0)
Pages[a++] = new p('http://tempweb.ccac.edu/info/','* Info Request Form',0)
Pages[a++] = new p('http://milo.ccac.edu/','* Online Services',0)
Pages[a++] = new p('','-----',0)

Pages[a++] = new p('','Enrollment Information',0)
Pages[a++] = new p('/admission/',' -- Admissions',0)
Pages[a++] = new p('/fin_aid/',' -- Financial Aid',0)
Pages[a++] = new p('/catalog/','-- Class Schedules',0)
Pages[a++] = new p('/about/fees.htm',' -- Tuition and Fees',0)
Pages[a++] = new p('/bursar/how2pay.htm',' -- Payment Options',0)
Pages[a++] = new p('/about/dualenr.htm',' -- H.S. Dual Enrollment',0)
Pages[a++] = new p('/dl/',' -- Distance Learning',0)
Pages[a++] = new p('/ll_learn/','-- Lifelong Learning',0)
Pages[a++] = new p('','-----',0)

Pages[a++] = new p('','Academic Information',0)
Pages[a++] = new p('/acadcal/',' --  Academic Calendar',0)
Pages[a++] = new p('/catalog/',' -- Catalog',0)
Pages[a++] = new p('/programs/',' -- Program Information',0)
Pages[a++] = new p('/academics/disc.htm','--  Department Homepages',0)
Pages[a++] = new p('/library/',' --  Library',0)
Pages[a++] = new p('http://physics.ccac.edu/tutoring/tutoring.htm',' -- Tutoring',0)
Pages[a++] = new p('/about/transcript.htm',' -- Transcripts',0)
Pages[a++] = new p('/about/policy.html',' -- Academic Regulations',0)
Pages[a++] = new p('/academics/aca_clep.html',' -- CLEP test',0)
Pages[a++] = new p('','-----',0)

Pages[a++] = new p('','Continuing Education',0)
Pages[a++] = new p('/ll_learn/','-- Lifelong Learning',0)
Pages[a++] = new p('/dl/',' -- Distance Learning',0)
Pages[a++] = new p('/wf_train/',' -- Workforce Training',0)
Pages[a++] = new p('http://psi.ccac.edu/',' -- Public Safety Institute',0)
Pages[a++] = new p('','-----',0)

Pages[a++] = new p('','Services for Students',0)
Pages[a++] = new p('/student_services/',' -- Student Services',0)
Pages[a++] = new p('/career_services/wom_cen.html',' -- Adult Re_Entry',0)
Pages[a++] = new p('/career_services/',' -- Career Services',0)
Pages[a++] = new p('/career_services/counsel.htm',' -- Counseling',0)
Pages[a++] = new p('/cc_services/',' -- Child Care',0)
Pages[a++] = new p('/student_services/disable/',' -- Disability Services',0)
Pages[a++] = new p('/svc/ISS/',' --  International Students',0)
Pages[a++] = new p('/student_life/',' -- Student Life',0)
Pages[a++] = new p('/transfer_services/',' -- Transfer Services',0)
Pages[a++] = new p('','-----',0)

Pages[a++] = new p('','Other Places of Interest',0)
Pages[a++] = new p('/edfdn/',' -- Alumni/Former Students',0)
Pages[a++] = new p('/about/directory/index.htm',' -- Directories',0)
Pages[a++] = new p('/about/pr/',' -- Online Press Center',0)
Pages[a++] = new p('/edfdn/',' -- Educational Foundation',0)
Pages[a++] = new p('/hr/',' -- Human Resources',0)
Pages[a++] = new p('/pir/',' -- Planning/Institutional Research',0)







function sendme() {
  x=document.form1.where.options[document.form1.where.selectedIndex].value	
  if(x.length > 0) { location=x }
}
function ShowHeader(x) {
  document.writeln('<TABLE VALIGN="TOP" BORDER="0" BGCOLOR="#FFFFFF" WIDTH=100%" CELLSPACING="0" CELLPADDING="5"><TR><TD VALIGN=baseline>')
  document.writeln('<A HREF="http://www.ccac.edu"><!--WIDTH=150--><IMG BORDER=0 SRC="http://tempweb.ccac.edu/gfx/logo3.gif"></A></TD>')
  document.writeln('<TD VALIGN=baseline><FONT FACE="ARIAL" COLOR="#044B7A"><B>Community College of Allegheny County</B></TD>')
  document.writeln('<TD ALIGN=right VALIGN=baseline><form name = form1>')
  // Display select box here
  document.writeln('<select name = "where" size=1 onChange="sendme()">')
  for(i=0;i<Pages.length;i++){ var t;
    t=(Pages[i].target==0)?' target="_top"':''
    document.writeln('<OPTION VALUE="'+Pages[i].url+'"'+t+'>'+Pages[i].desc)
  }
  document.writeln('</select></TD>')

  document.writeln('<TD VALIGN=baseline><input type="button" name ="but1" value="Go!" onClick="sendme()">')


  document.writeln('</TD></TR></form><TR><TD COLSPAN=4 BGCOLOR="#FF0000"><FONT FACE="ARIAL" COLOR="#FF0000" SIZE="-4">.</FONT></TD></TR></TABLE>')
  //  SetStyle(Style)
}

