 function jump(fe){
  var opt_key = fe.selectedIndex;
  var uri_val = fe.options[opt_key].value;
  window.open(uri_val,'_blank');
  return true;
 }

 //This function is used to assign the iTraffic code to all links going to online applications
 function openApps(URL){
  var newURL = "", cookieITValue = "", cookieIT = document.cookie;
  x = cookieIT.indexOf("IT=");
  if(x >= 0){
   y = cookieIT.indexOf("=", x);
   z = cookieIT.indexOf(";", x);
   if(z < 0) z = cookieIT.length;
   cookieITValue = cookieIT.substring(y + 1, z);
  }
  newURL = URL + '?IT=' + cookieITValue;
  window.open(newURL,"Applications","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=800,height=600,left=0,top=0,xscreen=0,yscreen=0");
 }

 //This function is used to link to quick links
 //Apple Store added on Jan 4, 2006 - RS
 function getQuickLink(URL){
  var selIndex = URL.selectedIndex;
  var selValue = URL.options[selIndex].value;

  if((selValue.substring(0,36) == "http://www.academyart.edu/applestore") ||(selValue.substring(0,4) == "http" && selValue.substring(0,13) != "http://online" && selValue.substring(0,25) != "http://www.academyart.edu" && selValue.substring(0,25) != "http://arc.academyart.edu" && selValue.substring(0,25) != "http://faculty.academyart")){
   window.open(selValue,'_blank');
  }
  else window.open(selValue,'_parent');
 }

 //This function is used to open a new window for Calendars
 function eventPopup(ID){
  window.open("event.asp?ID=" + ID,"EventPopup","toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=350,height=250,left=20,top=20,xscreen=20,yscreen=20")
 }
 
  // Job Search Window
 function searchJobs(){
  window.open("/alumni/srch_index.asp","SearchJobs","toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width=620,height=450,left=20,top=20,xscreen=20,yscreen=20")
 }

 // Job Postings Window
 function postJobs(){
  window.open("post_index.asp","PostJobs","toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width=620,height=450,left=20,top=20,xscreen=20,yscreen=20")
 }
 
 // Job Postings Window
 function alumniLogin(){
  window.open("alumni_index.asp","AlumniLogin","toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width=620,height=450,left=20,top=20,xscreen=20,yscreen=20")
 }
 
 //For Job Description from about/jobs.asp
  function WinOpen(announcement){
  window.open(announcement,"JobPreviewWindow","toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,height=450,width=600,left=20,top=20,xscreen=20,yscreen=20")
 }

 // Student Self Service
 function selfService(){
  window.open("popup.asp","SelfService","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=440,height=225,left=20,top=20,xscreen=20,yscreen=20")
 }

 // Printable Page
 function printable(PID){
  window.open("/printable.asp?PID=" + PID,"PrintablePage","toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=780,height=400,left=20,top=20,xscreen=20,yscreen=20")
 }
 
  // Orientation Movie
 function orientation(){
  window.open("orientation_movie.asp","Orientation","toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=no,resizable=yes,width=720,height=530,left=20,top=20,xscreen=20,yscreen=20")
 }
 
 
  //This function is used to open a new window for Cybercampus' Instructor bios
 function bioPop(theURL,winName,features) { //v2.0
 myName = "biography"
 w = 420
 h = 302
 myL = (screen.width-w)/2
 myT = (screen.height-h)/2
 settings = "width=" + w +",height=" + h + ",left=" + myL + ",top=" + myT + ",scrollbars=yes,toolbars=no,menu=no,location=no,status=no"
  gimme = window.open(theURL,myName,settings);
  setTimeout("window.gimme.focus()", 300)
}

  // Real Movie Popup
 function realMovie(movieName){
  open("/real_movie.asp?MN=" + movieName,"MovieWindow","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=240,height=180,left=20,top=20,xscreen=20,yscreen=20")
 }