//	Preload Images Script
//	*********************
    if (window.document.images) {

    function doPreload() {
      var the_images = new Array('images/n11.gif','images/n12.gif','images/n21.gif','images/n22.gif','images/n31.gif','images/n32.gif','images/n41.gif','images/n42.gif','images/n51.gif','images/n52.gif','images/n61.gif','images/n62.gif','images/home_pic1.jpg','images/banner.jpg','images/edge1.GIF','images/edge2.GIF','images/edge3.GIF','images/edge4.GIF','images/edge5.GIF','images/edge6.GIF','images/edge7.GIF','images/edge8.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) {
	var the_window = window.open(the_url,'the_window','width=640,height=475,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,screenX=100pixels,screenY=100pixels');
	}

//	Pop Up Map
//	*********************
	function popMAP(the_url) {
	var the_window = window.open(the_url,'the_window','width=331,height=306,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,screenX=100pixels,screenY=100pixels');
	}

//	Pop Up External URL
//	*********************
	function popURL(the_url) {
	var the_window = window.open(the_url,'the_window','toolbar=yes,location=yes,status=yes,scrollbars=yes,resizable=yes,screenX=100pixels,screenY=100pixels');
	}

//	Self Close
//	*********************
    function closeNow()	{
    window.close()
    }

//	Adobe Reader
//	*********************
    function reader() {
    window.open("http://www.adobe.com/products/acrobat/readstep2.html", "newwindow", "height=600,width=800,scrollbars,resizable")
    }