///***** JavaScript: Image Preload *****///
///***** Don't forget to preload same image names in _sp and _ch folders!!! *****///
if (window.document.images) {
    function doPreload() {
      var the_images = new Array('../images/ATI_logo.jpg','../_en/images/ln11.gif','../_en/images/ln12.gif','../_en/images/ln21.gif','../_en/images/ln22.gif','../_en/images/ln31.gif','../_en/images/ln32.gif','../_en/images/n11.gif','../_en/images/n12.gif','../_en/images/n13.gif','../_en/images/n21.gif','../_en/images/n22.gif','../_en/images/n23.gif','../_en/images/n31.gif','../_en/images/n32.gif','../_en/images/n33.gif','../_en/images/n41.gif','../_en/images/n42.gif','../_en/images/n43.gif','../_en/images/n51.gif','../_en/images/n52.gif','../_en/images/n53.gif','../_en/images/n61.gif','../_en/images/n62.gif','../_en/images/n63.gif','../_en/images/RSS1.jpg','../_en/images/RSS2.jpg','../_en/images/sub_blue_box.jpg','../_en/images/sub_gray_box.jpg','../_en/images/gray_box.jpg','../_en/images/globe_box_top.jpg','../_en/images/globe_box_bottom.jpg');
      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=472,height=400,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()
        }

//	Form Background Color Swap
//	**************************
	function setback(elmnt) {
	    elmnt.style.backgroundColor='#E7E7E7';
	}
	function restoreBack(elmnt) {
	    elmnt.style.backgroundColor='#FFFFFF';
	}

//	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";

