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
   winName += (Math.ceil(Math.random()*10000)).toString();
   if (!theURL.match(/http:\/\//)) {
      theURL = 'http://'+(theURL.match(/^\//)?document.domain:'')+ 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');");
}
