/*
 * default.js
 *
 * contains scripting for ets.org
 * this file should be included in every ets.org page
 *
 * history:
 *    15 feb 05: file created.
 *               - dhj
 *
 */


function changeImages() {  // the rollover code
   if( document.images ) {
      for( var i=0; i<changeImages.arguments.length; i+=2 ) {
         document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
      }
   }
}

/* pulled from http://www.accessify.com/tutorials/the-perfect-pop-up.asp */
function popUp( strURL, strType, strHeight, strWidth ) {
   var strOptions = "";
   if( strType == "console" ) { strOptions = "resizable,height="+strHeight+",width="+strWidth; }
   if( strType == "fixed" ) {   strOptions = "status,height="+strHeight+",width="+strWidth; }
   if( strType == "elastic" ) { strOptions = "toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth; }
   window.open( strURL, 'newWin', strOptions );
}

/* [ fin ] */

