///***** JavaScript: Image Preload *****///
if (window.document.images) {
    function doPreload() {
      var the_images = new Array('../images/logo.jpg','../images/sub_banner.jpg','../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/n71.gif','../images/n72.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=432,height=495,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,screenX=50pixels,screenY=50pixels');
	}


//	Larger Item View Window
//	*********************
	function lgrView(this_pg) {
	var the_window = window.open(this_pg,'the_window','width=455,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()
    }

//	Search for Distributors
//	***********************
	function gotoDistributors() {
	document.search_distributor.submit();
	}

//	Search for Retailers
//	*********************
	function gotoRetail() {
	document.search_retailer.submit();
	}


//	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";
