function goto_careercenter() {

var args = parseQueryString (); 
 var section = "null"; 
 for (var arg in args) { 
 
  if (arg=='section') {      //fills partner variable from the URL 
 
   section = args[arg]; 
  } 
 }
 
if (section == 'student') {

     window.location= 'displaycommon.cfm?an=1&subarticlenbr=312&partner=' + tree.partner.info.identifier +'§ion=student';
}

else {window.location= 'displaycommon.cfm?an=1&subarticlenbr=279&partner=' + tree.partner.info.identifier;}

}
//-------------------------------------------
function displaycustomcontact() {
var temp = loadpartner()
if (temp=="default"){ document.getElementById("contact_info").innerHTML = " "; }
if (temp=="CHICAGOBAR"){ 

    document.getElementById("contact_info").innerHTML = "<BR><a style='FONT-SIZE: 11px; COLOR: #8b8b8b' href='" + tree.partner.info.homepage + "'>>> "+ tree.partner.info.abbreviation +" Home</a>"
}

}