//	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');
      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];
      }
     }
    }

//	Open New Window Script
//	*********************
	function winOpen(the_url) {
	var the_window = window.open(the_url,'the_window','width=800,height=600,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,screenX=100pixels,screenY=100pixels');
	}


//	Pop Up Window Script
//	*********************
	function popUP(the_url) {
	var the_window = window.open(the_url,'the_window','width=435,height=330,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,screenX=100pixels,screenY=100pixels');
	}

//	Pop Up Calculator
//	*********************
	function calc(the_url) {
	var the_window = window.open(the_url,'the_window','width=410,height=355,toolbar=no,location=no,status=no,scrollbars=no,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")
    }

//  Print A Page
//  *********************
	function printNow()	{
	window.print()
	document.location.href = "javascript:history.back(-1)"
	}
