///***** JavaScript: Image Preload *****///
if (window.document.images) {
    function doPreload() {
      var the_images = new Array('../images/logo.gif','../images/nav1.gif');
      preloadImages(the_images);
      }
    function preloadImages(the_images_array) {
    for(loop = 0; loop < the_images_array.length; loop++) {
      var an_image = new Image();
      an_image.src = the_images_array[loop];
      }
     }
    }

//	Pop Up Window Script
//	*********************
    function popUP(the_url,the_image) {
    var the_window = window.open(the_url,'the_window','width=300,height=400,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,screenX=100pixels,screenY=100pixels');
    }

//	Self Close
//	*********************
    function closeNow()	{
    window.close()
    }