<!--
<!-- Preloading images
<!--
function preload() 
  { if (!document.images) return;
    var ar = new Array();
    var arguments = preload.arguments;
    for (var i = 0; i < arguments.length; i++) 
      { ar[i] = new Image();
        ar.src = arguments[i];
      }
   }
<!--
<!-- This script opens a pop-up window of a required size
<!-- 
  function openWindow(url, name, width, height, scroll) 
    {window.open(url, name, 'width=' + width + ',height=' + height + ',scrollbars=' + scroll + ', left=40, top=20, toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0')}
//-->
<!--
<!-- Windows Print function

function printPage() 
  { if (window.print)
      window.print()
    else
      alert("Sorry, your browser doesn't support this feature.");
   }
// -->

