TabParams = {
      eventType: "mousedown",
      tabTagName: "span",
      imgOverExt: "-1",
      imgActiveExt: "-2",
      cookieScope: "none"
};
window.onload = init; 
function init(){
    if (arguments.callee.done) return;
    arguments.callee.done = true;
    tabInit();
}
if (document.addEventListener) {
    document.addEventListener("DOMContentLoaded", init, false);
}
/* Copyright 2005 HoustonChronicle.com ver .9 */
function MM_openBrWindow(theURL,winName,features) { //v1.2.1
   if (!theURL.match(/http:\/\//)) {
      var docdom = document.domain;
     var loc = window.location.toString();
     loc = loc.replace('http://','');
     if (loc.match(docdom)) {
        loc = loc.substring(0,loc.indexOf('/'));
     } else {
        loc = docdom;
     }
      theURL = 'http://'+(theURL.match(/^\//)?loc:'')+ theURL;
   }
   if (!features) {
   features='location=yes,toolbar=yes,menubar=yes,directories=yes,status=yes,resizable=yes,scrollbars=yes';
   }
   window.open(theURL,winName,features);
}

// pek: from http://javascript.internet.com/generators/popup-window.html
function admission_popUp(URL) {
  day = new Date();
  id = day.getTime();
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=467,height=545,left = 406.5,top = 239.5');");
}


