<!--
function SwapImage(ImageToChange, ImageToShow) {
if (document.images) { document[ImageToChange].src = ImageToShow; } }
function bar(message) {
if (document.images) { window.status = message; return true } }
if (document.images) {
}
// -->

<!--
function PopUp(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

<!--
    function popup_window( url, id, width, height )
    {
      popup = window.open( url, id, 'toolbar=no,scrollbars=no,location=no,statusbar=no,menubar=no,resizable=no,width=' + width + ',height=' + height + '' );
      popup.focus();
    }
//-->