///***** JavaScript: Image Preload *****///
if (window.document.images) {
    function doPreload() {
      var the_images = new Array('../images/logo.jpg','../images/header_bkgnd.jpg','../images/nav0.jpg','../images/nav11.jpg','../images/nav21.jpg','../images/nav31.jpg','../images/nav41.jpg','../images/nav02.jpg','../images/nav12.jpg','../images/nav22.jpg','../images/nav32.jpg','../images/nav42.jpg','../images/login.jpg','../images/pondproducts.gif','../images/home_pic.jpg','../images/box1_bkgnd.gif','../images/box2_bkgnd.gif','../images/itemofthemonth.gif','../images/getdetails.gif','../images/getdetails2.gif','../images/createaccount.jpg','../images/box2_nav11.gif','../images/box2_nav12.gif','../images/box2_nav21.gif','../images/box2_nav22.gif','../images/box2_nav31.gif','../images/box2_nav32.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
//	*********************
	function popUP(this_pg) {
	var the_window = window.open(this_pg,'the_window','width=380,height=440,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,screenX=50pixels,screenY=50pixels');
	}

//	Security Code Window
//	*********************
	function secCode(this_pg) {
	var the_window = window.open(this_pg,'the_window','width=432,height=525,toolbar=no,location=no,status=no,scrollbars=no,resizable=yes,screenX=50pixels,screenY=50pixels');
	}

//	Larger Item View Window
//	*********************
	function lgrView(this_pg) {
	var the_window = window.open(this_pg,'the_window','width=475,height=600,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,screenX=50pixels,screenY=50pixels');
	}

//	Email Friend Window
//	*********************
	function emailFrnd(this_pg) {
	var the_window = window.open(this_pg,'the_window','width=432,height=495,toolbar=no,location=no,status=no,scrollbars=no,resizable=yes,screenX=50pixels,screenY=50pixels');
	}

//	Self Close
//	*********************
    function closeNow()	{
    window.close()
    }

//	Date Script
//	*********************
	var today = new Date();
	var day = today.getDate();
	var month = today.getMonth();
		function y2k(number) {
		  return (number < 1000) ? number + 1900 : number;
		}

		var year = y2k(today.getYear())
		if (month == "0")
		    month = "January";
	    else
		if (month == "1")
		    month = "February";
	    else
		if (month == "2")
		    month = "March";
	    else
		if (month == "3")
		    month = "April";
	    else
		if (month == "4")
		    month = "May";
	    else
		if (month == "5")
		    month = "June";
	    else
		if (month == "6")
		    month = "July";
	    else
		if (month == "7")
		    month = "August";
	    else
		if (month == "8")
		    month = "September";
	    else
		if (month == "9")
		    month = "October";
	    else
		if (month == "10")
		    month = "November";
	    else
		if (month == "11")
		    month = "December";
