var pictures = new Array("1judy.jpg", "2judy.jpg", "3judy.jpg", "4judy.jpg", "5judy.jpg", "6judy.jpg", "7judy.jpg","8judy.jpg");
	var alternate1 = 0;
	function clickIcon(val)
    {
		if(val == 1)
		{
        	alternate1 = (alternate1 > 5) ? 0 :alternate1+1;
        	document.images.myImages.src = pictures[alternate1];
			document.pix.src = pictures[alternate1];

		}
		if(val == 0)
		{
			alternate1 = (alternate1 < 1) ? 6 :alternate1-1;
			document.images.myImages.src = pictures[alternate1];
			document.pix.src = pictures[alternate1];
		}
    }
	
	function MM_openBrWindow(theURL,winName,features) 
	{ //v2.0
  		window.open(theURL,winName,features);
	}
